Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 216 for yield (0.06 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

    @ElementTypesAreNonnullByDefault
    public abstract class TypeToken<T> extends TypeCapture<T> implements Serializable {
    
      private final Type runtimeType;
    
      /** Resolver for resolving parameter and field types with {@link #runtimeType} as context. */
      @LazyInit @CheckForNull private transient TypeResolver invariantTypeResolver;
    
      /** Resolver for resolving covariant types with {@link #runtimeType} as context. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    	if d.validator.returnUnknownFieldPaths && (len(decodingStrictErrs) > 0 || len(unknownFields) > 0) {
    		for _, unknownField := range unknownFields {
    			decodingStrictErrs = append(decodingStrictErrs, fmt.Errorf(`unknown field "%s"`, unknownField))
    		}
    		return obj, gvk, runtime.NewStrictDecodingError(decodingStrictErrs)
    	}
    
    	return obj, gvk, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	// the client.
    	// The evaluation code below does not take this into account.
    	// In cases where `padDuration` makes a difference,
    	// set the `expectedAverages` field of `uniformScenario`.
    	padDuration time.Duration
    	// When true indicates that only half the specified number of
    	// threads should run during the first half of the evaluation
    	// period
    	split bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * usually have much noticeable impact. A value of one permits only one thread to modify the cache
       * at a time, but since read operations and cache loading computations can proceed concurrently,
       * this still yields higher concurrency than full synchronization.
       *
       * <p>Defaults to 4. <b>Note:</b>The default may change in the future. If you care about this
       * value, you should always choose it explicitly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// For storeconst ops, the AuxInt field encodes both
    		// the value to store and an address offset of the store.
    		// Cast AuxInt to a ValAndOff to extract Val and Off fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    
    	invalidConfigWithTypo := "testdata/invalid-configs/invalid-typo.yaml"
    	_, err = LoadEncryptionConfig(ctx, invalidConfigWithTypo, false, "")
    	if got, wantSubString := errString(err), `strict decoding error: unknown field "resources[0].providers[3].kms.pandas"`; !strings.Contains(got, wantSubString) {
    		t.Fatalf("should result in strict decode error while parsing configuration file %q:\ngot: %q\nwant substring: %q", invalidConfigWithTypo, got, wantSubString)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    	var data1 win32finddata1
    	handle, err = findFirstFile1(name, &data1)
    	if err == nil {
    		copyFindData(data, &data1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    			t.Errorf("%d: err.Temporary(): got %v, want %v", i+1, err.Temporary(), tt.temporary)
    		}
    	}
    }
    
    func TestURLHostnameAndPort(t *testing.T) {
    	tests := []struct {
    		in   string // URL.Host field
    		host string
    		port string
    	}{
    		{"foo.com:80", "foo.com", "80"},
    		{"foo.com", "foo.com", ""},
    		{"foo.com:", "foo.com", ""},
    		{"FOO.COM", "FOO.COM", ""}, // no canonicalization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    		if usesFWChain {
    			natChains.Write(utiliptables.MakeChainLine(fwChain))
    			activeNATChains.Insert(fwChain)
    
    			// The service firewall rules are created based on the
    			// loadBalancerSourceRanges field. This only works for VIP-like
    			// loadbalancers that preserve source IPs. For loadbalancers which
    			// direct traffic to service NodePort, the firewall rules will not
    			// apply.
    			args = append(args[:0],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (OR(Q|L) (SHL(Q|L) (MOV(Q|L)const [1]) y) x) => (BTS(Q|L) x y)
    (XOR(Q|L) (SHL(Q|L) (MOV(Q|L)const [1]) y) x) => (BTC(Q|L) x y)
    // Note: only convert OR/XOR to BTS/BTC if the constant wouldn't fit in
    // the constant field of the OR/XOR instruction. See issue 61694.
    ((OR|XOR)Q (MOVQconst [c]) x) && isUint64PowerOfTwo(c) && uint64(c) >= 1<<31 => (BT(S|C)Qconst [int8(log64(c))] x)
    
    // Recognize bit clearing: a &^= 1<<b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top