Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 401 for satisfies (0.22 sec)

  1. doc/go_spec.html

    type parameter list    type arguments    after substitution
    
    [P any]                int               int satisfies any
    [S ~[]E, E any]        []int, int        []int satisfies ~[]int, int satisfies any
    [P io.Writer]          string            illegal: string doesn't satisfy io.Writer
    [P comparable]         any               any satisfies (but does not implement) comparable
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. guava/src/com/google/common/net/MediaType.java

       * media type this method does not consider the number of occurrences of a parameter. For example,
       * {@code "text/plain; charset=UTF-8"} satisfies {@code "text/plain; charset=UTF-8;
       * charset=UTF-8"}.
       */
      public boolean is(MediaType mediaTypeRange) {
        return (mediaTypeRange.type.equals(WILDCARD) || mediaTypeRange.type.equals(this.type))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

       * media type this method does not consider the number of occurrences of a parameter. For example,
       * {@code "text/plain; charset=UTF-8"} satisfies {@code "text/plain; charset=UTF-8;
       * charset=UTF-8"}.
       */
      public boolean is(MediaType mediaTypeRange) {
        return (mediaTypeRange.type.equals(WILDCARD) || mediaTypeRange.type.equals(this.type))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    }
    
    // filterVersions classifies versions into releases and pre-releases, filtering
    // out:
    //  1. versions that do not satisfy the 'allowed' predicate, and
    //  2. "+incompatible" versions, if a compatible one satisfies the predicate
    //     and the incompatible version is not preferred.
    //
    // If the allowed predicate returns an error not equivalent to ErrDisallowed,
    // filterVersions returns that error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    // TestReadTruncation test the ending condition on various truncated files and
    // that truncated files are still detected even if the underlying io.Reader
    // satisfies io.Seeker.
    func TestReadTruncation(t *testing.T) {
    	var ss []string
    	for _, p := range []string{
    		"testdata/gnu.tar",
    		"testdata/ustar-file-reg.tar",
    		"testdata/pax-path-hdr.tar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"array": []interface{}{"value1", "value2"},
    						}}},
    
    				applyPatchOperation{
    					"change array to valid value that satisfies maxItems",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"array": []interface{}{"value1"},
    					}},
    				expectError{
    					applyPatchOperation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. src/net/http/request_test.go

    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		_, err := ReadRequest(r)
    		if err != nil {
    			b.Fatalf("failed to read request: %v", err)
    		}
    	}
    }
    
    // infiniteReader satisfies Read requests as if the contents of buf
    // loop indefinitely.
    type infiniteReader struct {
    	buf    []byte
    	offset int
    }
    
    func (r *infiniteReader) Read(b []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	}
    	// Park.
    	goparkunlock(&work.assistQueue.lock, waitReasonGCAssistWait, traceBlockGCMarkAssist, 2)
    	return true
    }
    
    // gcFlushBgCredit flushes scanWork units of background scan work
    // credit. This first satisfies blocked assists on the
    // work.assistQueue and then flushes any remaining credit to
    // gcController.bgScanCredit.
    //
    // Write barriers are disallowed because this is used by gcDrain after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

                encodeSet = FRAGMENT_ENCODE_SET,
                alreadyEncoded = true,
                unicodeAllowed = true,
              )
          }
    
        /**
         * Re-encodes the components of this URL so that it satisfies (obsolete) RFC 2396, which is
         * particularly strict for certain components.
         */
        internal fun reencodeForUri() =
          apply {
            host = host?.replace(Regex("[\"<>^`{|}]"), "")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	// then Offset in the returned StructField is the offset in
    	// the embedded struct.
    	FieldByName(name string) (StructField, bool)
    
    	// FieldByNameFunc returns the struct field with a name
    	// that satisfies the match function and a boolean indicating if
    	// the field was found.
    	//
    	// FieldByNameFunc considers the fields in the struct itself
    	// and then the fields in any embedded structs, in breadth first order,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top