Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 117 for importing (0.56 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

    import java.util.stream.Collectors;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link NavigableMap} whose contents will never change, with many other important properties
     * detailed at {@link ImmutableCollection}.
     *
     * <p><b>Warning:</b> as with any sorted collection, you are strongly advised not to use a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>When the weight of an entry is zero it will not be considered for size-based eviction
       * (though it still may be evicted by other means).
       *
       * <p><b>Important note:</b> Instead of returning this as a {@code CacheBuilder}
       * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "singularName": {
                "default": "",
                "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
                "type": "string"
              },
              "storageVersionHash": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

       * the {@code Future} is already done. Second, if buggy code calls {@code getDone} on a {@code
       * Future} that is still pending, the program will throw instead of block. This can be important
       * for APIs like {@link #whenAllComplete whenAllComplete(...)}{@code .}{@link
       * FutureCombiner#call(Callable, Executor) call(...)}, where it is easy to use a new input from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			if x.isNil() {
    				return Typ[UntypedNil], nil, 0
    			}
    			break
    		}
    		// Values must have concrete dynamic types. If the value is nil,
    		// keep it untyped (this is important for tools such as go vet which
    		// need the dynamic type for argument checking of say, print
    		// functions)
    		if x.isNil() {
    			return Typ[UntypedNil], nil, 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    	secureRenegotiation bool
    	// ekm is a closure for exporting keying material.
    	ekm func(label string, context []byte, length int) ([]byte, error)
    	// resumptionSecret is the resumption_master_secret for handling
    	// or sending NewSessionTicket messages.
    	resumptionSecret []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		}), nil)
    	if err != nil {
    		t.Fatalf("GuaranteedUpdate failed: %v", err)
    	}
    
    	// Check that we receive a modified watch event. This check also
    	// indirectly ensures that the cache is synced. This is important
    	// when testing with the Cacher since we may have to allow for slow
    	// processing by allowing updates to propagate to the watch cache.
    	// This allows for that.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    // the seed. If the connection was set to allow renegotiation via
    // Config.Renegotiation, or if the connections supports neither TLS 1.3 nor
    // Extended Master Secret, this function will return an error.
    //
    // Exporting key material without Extended Master Secret or TLS 1.3 was disabled
    // in Go 1.22 due to security issues (see the Security Considerations sections
    // of RFC 5705 and RFC 7627), but can be re-enabled with the GODEBUG setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData             *bytes.Buffer
    	existingFilterChainsData *bytes.Buffer
    	filterChains             proxyutil.LineBuffer
    	filterRules              proxyutil.LineBuffer
    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. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	//	is really slim.
    	//	2. When working with old version containers which have no restart count label,
    	//	we can only assume their restart count is 0.
    	// Anyhow, we only promised "best-effort" restart count reporting, we can just ignore
    	// these limitations now.
    	// TODO: move this comment to SyncPod.
    	podSandboxIDs, err := m.getSandboxIDByPodUID(ctx, uid, nil)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top