Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for isSuperset (0.29 sec)

  1. guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

       *         .build();
       * }</pre>
       *
       * <p>After invoking {@link #build()} it is still possible to add more entries and build again.
       * Thus each map generated by this builder will be a superset of any map generated before it.
       *
       * @since 2.0
       */
      public static final class Builder<B> {
        private final ImmutableMap.Builder<Class<? extends B>, B> mapBuilder = ImmutableMap.builder();
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kube/krt/core.go

    	// This is important when we register in a handler itself, which would cause duplicative events.
    	RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer
    }
    
    // internalCollection is a superset of Collection for internal usage. All collections must implement this type, but
    // we only expose some functions to external users for simplicity.
    type internalCollection[T any] interface {
    	Collection[T]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    	Metadata *BootstrapNodeMetadata
    	// RawMetadata is the untyped node metadata
    	RawMetadata map[string]any
    	// Locality from Envoy bootstrap
    	Locality *core.Locality
    }
    
    // BootstrapNodeMetadata is a superset of NodeMetadata, intended to model the entirety of the node metadata
    // we configure in the Envoy bootstrap. This is split out from NodeMetadata to explicitly segment the parameters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    For example, the graph of dependencies to use at compile time is different from the graph of dependencies to use at runtime.
    In general, the graph of dependencies at runtime is a superset of the compile dependencies (there are exceptions to the rule, for example in case some dependencies are repackaged within the runtime binary).
    
    Gradle resolves those dependency graphs independently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    func (testMetaFactory) Interpret(data []byte) (*schema.GroupVersionKind, error) {
    	findKind := struct {
    		APIVersion string `json:"myVersionKey,omitempty"`
    		ObjectKind string `json:"myKindKey,omitempty"`
    	}{}
    	// yaml is a superset of json, so we use it to decode here. That way,
    	// we understand both.
    	if err := yaml.Unmarshal(data, &findKind); err != nil {
    		return nil, fmt.Errorf("couldn't get version/kind: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            if (previousResult.getFailure() != null) {
                return false;
            }
    
            // If the previous result was rejected, do not need to re-resolve (new rejects will be a superset of previous rejects)
            if (previousResult.isRejected()) {
                return false;
            }
    
            // If the previous result is still not rejected, do not need to re-resolve. The previous result is still good.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableTable.java

       * Object)} are even more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple tables in series. Each table is a superset of the tables created before it.
       *
       * @since 11.0
       */
      @DoNotMock
      public static final class Builder<R, C, V> {
        private final List<Cell<R, C, V>> cells = Lists.newArrayList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            when:
            options.jvmArgs = ["-server", "-esa"]
            other.jvmArgs = ["-server"]
    
            then:
            options.isCompatibleWith(other)
        }
    
        def "is not compatible with a superset of jvm args"() {
            def other = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            when:
            options.jvmArgs = ["-server"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    	default:
    		return nil, errNotCommon
    	}
    }
    
    // ListAccessor returns a List interface for the provided object or an error if the object does
    // not provide List.
    // IMPORTANT: Objects are NOT a superset of lists. Do not use this check to determine whether an
    // object *is* a List.
    func ListAccessor(obj interface{}) (List, error) {
    	switch t := obj.(type) {
    	case List:
    		return t, nil
    	case ListMetaAccessor:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableTable.java

       * Object)} are even more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple tables in series. Each table is a superset of the tables created before it.
       *
       * @since 11.0
       */
      @DoNotMock
      public static final class Builder<R, C, V> {
        private final List<Cell<R, C, V>> cells = Lists.newArrayList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top