Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for infeasible (0.68 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * in the class javadoc.
       *
       * <p>If you can represent the duration as a {@link java.time.Duration} (which should be preferred
       * when feasible), use {@link #expireAfterWrite(Duration)} instead.
       *
       * @param duration the length of time after an entry is created that it should be automatically
       *     removed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    // Unless explicitly stated as such (or *Plain), all of the
    // tests below are two-way tests. When introducing new tests,
    // please try to make them two-way as well to ensure that
    // marshaling and unmarshaling are as symmetrical as feasible.
    var marshalTests = []struct {
    	Value          any
    	ExpectXML      string
    	MarshalOnly    bool
    	MarshalError   string
    	UnmarshalOnly  bool
    	UnmarshalError string
    }{
    	// Test nil marshals to nothing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    		// (https://golang.org/ref/mod#lazy-loading) only if the module graph is
    		// pruned.
    		//
    		// In unpruned modules,we load the module graph much more aggressively (in
    		// order to detect inconsistencies that wouldn't be feasible to spot-check),
    		// so it wouldn't be useful to log when that occurs (because it happens in
    		// normal operation all the time).
    		readModGraphDebugOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/runtime/map.go

    		offi := (i + it.offset) & (abi.MapBucketCount - 1)
    		if isEmpty(b.tophash[offi]) || b.tophash[offi] == evacuatedEmpty {
    			// TODO: emptyRest is hard to use here, as we start iterating
    			// in the middle of a bucket. It's feasible, just tricky.
    			continue
    		}
    		k := add(unsafe.Pointer(b), dataOffset+uintptr(offi)*uintptr(t.KeySize))
    		if t.IndirectKey() {
    			k = *((*unsafe.Pointer)(k))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			AuthenticationPolicies{}, NetworkManager{}, sidecarIndex{}, Telemetries{}, ProxyConfigs{}, ConsolidatedDestRule{},
    			ClusterLocalHosts{}),
    		// These are not feasible/worth comparing
    		cmpopts.IgnoreTypes(sync.RWMutex{}, localServiceDiscovery{}, FakeStore{}, atomic.Bool{}, sync.Mutex{}),
    		cmpopts.IgnoreUnexported(IstioEndpoint{}),
    		cmpopts.IgnoreInterfaces(struct{ mesh.Holder }{}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    // * 1 IP address. This is managed, with IP explicit
    // * Nothing. This is managed, with IP auto assigned
    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If a task in your build relied on the previous behavior, you can instead use the entire
    `SourceSetOutput` as an input, which contains all classes and resources.
    
    If that is not feasible, you can restore the previous behavior by adding more task dependencies to `classesDirs`:
    ```groovy
    java {
        sourceSets {
            main {
                output.classesDirs.builtBy(output)
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top