Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for containment (0.14 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    					// the local type parameter doesn't actually contain sync.Mutex,
    					// which lacks the M method.
    					//
    					// With tilde, it is clearer that the containment is via an
    					// approximation element.
    					subpath[len(subpath)-1] = "~" + subpath[len(subpath)-1]
    				}
    				return append(subpath, typ.String())
    			}
    		}
    		return nil
    	}
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// absent fields in CEL expressions.
    	// If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map
    	// are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
    	// are accessible via CEL macros and functions such as `self.all(...)`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. maven-core/plugin-manager.txt

    h4. Working with POMs during development
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  4. pkg/volume/emptydir/empty_dir.go

    	// determine pod resource allocation
    	// we use the same function for pod cgroup assignment to maintain consistent behavior
    	// NOTE: this could be nil on systems that do not support pod memory containment (i.e. windows)
    	podResourceConfig := cm.ResourceConfigForPod(pod, false, uint64(100000), false)
    	if podResourceConfig != nil && podResourceConfig.Memory != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * {@code true} if and only if this queue contains at least one element {@code e} such that {@code
       * o.equals(e)}.
       *
       * @param o object to be checked for containment in this queue
       * @return {@code true} if this queue contains the specified element
       */
      @CanIgnoreReturnValue
      @Override
      public boolean contains(@Nullable Object o) {
        if (o == null) return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * {@code true} if and only if this queue contains at least one element {@code e} such that {@code
       * o.equals(e)}.
       *
       * @param o object to be checked for containment in this queue
       * @return {@code true} if this queue contains the specified element
       */
      @CanIgnoreReturnValue
      @Override
      public boolean contains(@Nullable Object o) {
        if (o == null) return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		return false
    	}
    	m := regionContainment[g]
    
    	d := regionInclusion[c]
    	b := regionInclusionBits[d]
    
    	// A contained country may belong to multiple disjoint groups. Matching any
    	// of these indicates containment. If the contained region is a group, it
    	// must strictly be a subset.
    	if d >= nRegionGroups {
    		return b&m != 0
    	}
    	return b&^m == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multiset.java

       * other collection type like {@link List}, but it may be unexpected to the user of a multiset.
       *
       * @param elements the collection of elements to be checked for containment in this multiset
       * @return {@code true} if this multiset contains at least one occurrence of each element
       *     contained in {@code elements}
       * @throws NullPointerException if {@code elements} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multiset.java

       * other collection type like {@link List}, but it may be unexpected to the user of a multiset.
       *
       * @param elements the collection of elements to be checked for containment in this multiset
       * @return {@code true} if this multiset contains at least one occurrence of each element
       *     contained in {@code elements}
       * @throws NullPointerException if {@code elements} is null
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/BloomFilter.java

    import java.math.RoundingMode;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A Bloom filter for instances of {@code T}. A Bloom filter offers an approximate containment test
     * with one-sided error: if it claims that an element is contained in it, this might be in error,
     * but if it claims that an element is <i>not</i> contained in it, then this is definitely true.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top