Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for puppies (0.11 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ```java
     * HttpUrl url = HttpUrl.parse("https://twitter.com/search?q=cute%20%23puppies&f=images");
     * for (int i = 0, size = url.querySize(); i < size; i++) {
     *   System.out.println(url.queryParameterName(i) + ": " + url.queryParameterValue(i));
     * }
     * ```
     *
     * which prints:
     *
     * ```
     * q: cute #puppies
     * f: images
     * ```
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    //}
    
    type EncodeQueryTest struct {
    	m        Values
    	expected string
    }
    
    var encodeQueryTests = []EncodeQueryTest{
    	{nil, ""},
    	{Values{}, ""},
    	{Values{"q": {"puppies"}, "oe": {"utf8"}}, "oe=utf8&q=puppies"},
    	{Values{"q": {"dogs", "&", "7"}}, "q=dogs&q=%26&q=7"},
    	{Values{
    		"a": {"a1", "a2", "a3"},
    		"b": {"b1", "b2", "b3"},
    		"c": {"c1", "c2", "c3"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// `foobar`. If the plugin supplies `bar` and `foobar`, TensorFlow can use the
    /// default implementation of `foo`.
    ///
    /// During plugin loading, plugins will call the registration function provided
    /// by this interface, supplying values for each of these structures. Core
    /// TensorFlow checks that the plugin supplies all mandatory operations and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // node.
        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    
        // Name that is used for the call node. This may not be
        // call_node_def_.name() if the client supplies a rewrite lambda.
        string function_def_name_;
    
        // Placeholder node simulating the host compute key in the output graph.
        // Not owned.
        Node* host_compute_key_placeholder_ = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// select the first compatible chain from Certificates.
    	NameToCertificate map[string]*Certificate
    
    	// GetCertificate returns a Certificate based on the given
    	// ClientHelloInfo. It will only be called if the client supplies SNI
    	// information or if Certificates is empty.
    	//
    	// If GetCertificate is nil or returns nil, then the certificate is
    	// retrieved from NameToCertificate. If NameToCertificate is nil, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top