Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for isSuperset (5.22 sec)

  1. src/syscall/wtf8_windows.go

    // that can be used to encode and decode potentially ill-formed UTF-16 strings
    // by using the [the WTF-8 encoding](https://simonsapin.github.io/wtf-8/).
    //
    // WTF-8 is a strict superset of UTF-8, i.e. any string that is
    // well-formed in UTF-8 is also well-formed in WTF-8 and the content
    // is unchanged. Also, the conversion never fails and is lossless.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

     *
     * Generally follows the JavaBean conventions, with 2 exceptions: is methods can return `Boolean` (in addition to `boolean`) and setter methods can return non-void values.
     *
     * This is essentially a superset of the conventions supported by Java, Groovy and Kotlin.
     */
    public enum PropertyAccessorType {
        IS_GETTER(2) {
            @Override
            public Class<?> propertyTypeFor(Method method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.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 13.0
       */
      public static final class Builder<B> {
        private final ImmutableMap.Builder<TypeToken<? extends B>, B> mapBuilder =
            ImmutableMap.builder();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice.go

    		return true
    	}
    
    	// sourceLabels should not conflict, root should have superset of sourceLabels.
    	for key, leafValue := range leaf.SourceLabels {
    		if v, ok := root.SourceLabels[key]; ok && v != leafValue {
    			return true
    		}
    	}
    
    	// gateways should not conflict, root should have superset of gateways.
    	if len(root.Gateways) > 0 && len(leaf.Gateways) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/certificate.go

    					return currentGatewayTLS.PrivateKey == gatewayTLS.PrivateKey
    				}
    				return false
    			}
    		}
    	}
    
    	return false
    }
    
    // get all gateways that is superset of the selector
    func getGatewaysWithSelector(c analysis.Context, gwScope bool, currentGWName resource.FullName, currentGWSelector map[string]string) []resource.FullName {
    	var gateways []resource.FullName
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.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 13.0
       */
      public static final class Builder<B> {
        private final ImmutableMap.Builder<TypeToken<? extends B>, B> mapBuilder =
            ImmutableMap.builder();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. pkg/proxy/topology.go

    		// !useServingTerminatingEndpoints means that localEndpoints contains only
    		// Ready endpoints. !useTopology means that clusterEndpoints contains *every*
    		// Ready endpoint. So clusterEndpoints must be a superset of localEndpoints.
    		allReachableEndpoints = clusterEndpoints
    		return
    	}
    
    	// clusterEndpoints may contain remote endpoints that aren't in localEndpoints, while
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. 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)
  9. android/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)
  10. pkg/controller/replicaset/replica_set_utils.go

    	// Count the number of pods that have labels matching the labels of the pod
    	// template of the replica set, the matching pods may have more
    	// labels than are in the template. Because the label of podTemplateSpec is
    	// a superset of the selector of the replica set, so the possible
    	// matching pods must be part of the filteredPods.
    	fullyLabeledReplicasCount := 0
    	readyReplicasCount := 0
    	availableReplicasCount := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top