るりまサーチ

最速Rubyリファレンスマニュアル検索!
59件ヒット [1-59件を表示] (0.016秒)
トップページ > クエリ:uri[x] > クエリ:scope[x]

別のキーワード

  1. uri build
  2. uri extract
  3. uri new
  4. open-uri open
  5. uri regexp

ライブラリ

クラス

キーワード

検索結果

URI::LDAP#scope -> String (29117.0)

自身の Scope を文字列で返します。

...自身の Scope を文字列で返します。...

URI::LDAP#scope=(s) (17123.0)

自身の Scope を文字列で設定します。

...自身の Scope を文字列で設定します。

@param s 自身の Scope を文字列で設定します。...

URI::LDAP.build(ary) -> URI::LDAP (11164.0)

引数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。 引数の正当性を検査します。

...数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。
引数の正当性を検査します。

@param ary 構成要素を表す配列を与えます。要素は次の順です。
//emlist{
[:host, :port, :dn, :attributes, :scope, :filter, :extensions]
/...
...//emlist{
:host, :port, :dn, :attributes, :scope, :filter, :extensions
//}
のいずれかです。

@raise URI::InvalidComponentError 各要素が適合しない場合に発生します。

例:
require 'uri'
p URI::LDAP.build(["example.com", "1", "/a", "b", "c", "d",...

URI::LDAP.build(hash) -> URI::LDAP (11164.0)

引数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。 引数の正当性を検査します。

...数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。
引数の正当性を検査します。

@param ary 構成要素を表す配列を与えます。要素は次の順です。
//emlist{
[:host, :port, :dn, :attributes, :scope, :filter, :extensions]
/...
...//emlist{
:host, :port, :dn, :attributes, :scope, :filter, :extensions
//}
のいずれかです。

@raise URI::InvalidComponentError 各要素が適合しない場合に発生します。

例:
require 'uri'
p URI::LDAP.build(["example.com", "1", "/a", "b", "c", "d",...

URI::LDAP (11022.0)

LDAP URI を表すクラスです。2255 (Obsoleted by 4510, 4516)。

...LDAP URI を表すクラスです。2255 (Obsoleted by 4510, 4516)。

ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]...

絞り込み条件を変える

NEWS for Ruby 3.0.0 (36.0)

NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...timeError is now raised (previously,
it only issued a warning in verbose mode). Additionally, accessing a
class variable from the toplevel scope is now a RuntimeError.
14541
* Assigning to a numbered parameter is now a SyntaxError instead of
a warning.

== Command line options

==...
...uto_compact= and GC.auto_compact have been added to control when compaction runs. Setting `auto_compact=` to `true` will cause compaction to occur during major collections. At the moment, compaction adds significant overhead to major collections, so please test first! 17176
* Hash
* Hash#tr...
...HTTP.get, Net::HTTP.get_response, and Net::HTTP.get_print can take the request headers as a Hash in the second argument when the first argument is a URI. 16686
* Net::SMTP
* Add SNI support.
* Net::SMTP.start arguments are keyword arguments.
* TLS should not check the host name by def...