Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for Element (0.21 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            keySetProvider.get()
    
            then:
            def e = thrown(NullPointerException)
            e.message == 'Cannot get the value of a property of type java.util.Set with element type java.lang.String as the source value contains a null element.'
        }
    
        def "keySet provider tracks value of property"() {
            when:
            def keySetProvider = property.keySet()
    
            then:
            keySetProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                            type: string
                          description: matchLabels is a map of {key,value} pairs. A single
                            {key,value} in the matchLabels map is equivalent to an element
                            of matchExpressions, whose key field is "key", the operator
                            is "In", and the values array contains only "value". The requirements
                            are ANDed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    // list parses a possibly empty, sep-separated list of elements, optionally
    // followed by sep, and closed by close (or EOF). sep must be one of _Comma
    // or _Semi, and close must be one of _Rparen, _Rbrace, or _Rbrack.
    //
    // For each list element, f is called. Specifically, unless we're at close
    // (or EOF), f is called at least once. After f returns true, no more list
    // elements are accepted. list returns the position of the closing token.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        LLVM_DEBUG(llvm::dbgs()
                   << "Inverse scales element should be a float type. Got: "
                   << inverse_scales_element_type << ".\n");
        return failure();
      }
    
      if (inverse_scales_type.getNumElements() != 1) {
        LLVM_DEBUG(llvm::dbgs()
                   << "Inverse scales should contain only one element. Has: "
                   << inverse_scales_type.getNumElements() << ".\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			typ = check.typ(e.Type)
    			base = typ
    
    		case hint != nil:
    			// no composite literal type present - use hint (element type of enclosing type)
    			typ = hint
    			base, _ = deref(coreType(typ)) // *T implies &T{}
    			if base == nil {
    				check.errorf(e, InvalidLit, "invalid composite literal element type %s (no core type)", typ)
    				goto Error
    			}
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      private static final class PickyIterable<E> implements Iterable<E> {
        final List<E> elements;
        int modCount = 0;
    
        PickyIterable(E... elements) {
          this.elements = new ArrayList<E>(asList(elements));
        }
    
        @Override
        public Iterator<E> iterator() {
          return new PickyIterator();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Preconditions.java

       * is fine with that.
       */
    
      /**
       * Ensures that {@code index} specifies a valid <i>element</i> in an array, list or string of size
       * {@code size}. An element index may range from zero, inclusive, to {@code size}, exclusive.
       *
       * @param index a user-supplied index identifying an element of an array, list or string
       * @param size the size of that array, list or string
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	//
    	// PeerCertificates and its contents should not be modified.
    	PeerCertificates []*x509.Certificate
    
    	// VerifiedChains is a list of one or more chains where the first element is
    	// PeerCertificates[0] and the last element is from Config.RootCAs (on the
    	// client side) or Config.ClientCAs (on the server side).
    	//
    	// On the client side, it's set if Config.InsecureSkipVerify is false. On
    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. android/guava/src/com/google/common/collect/Multimaps.java

        public boolean contains(@CheckForNull Object element) {
          return multimap.containsKey(element);
        }
    
        @Override
        public Iterator<K> iterator() {
          return Maps.keyIterator(multimap.entries().iterator());
        }
    
        @Override
        public int count(@CheckForNull Object element) {
          Collection<V> values = Maps.safeGet(multimap.asMap(), element);
          return (values == null) ? 0 : values.size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

        public boolean contains(@CheckForNull Object element) {
          return multimap.containsKey(element);
        }
    
        @Override
        public Iterator<K> iterator() {
          return Maps.keyIterator(multimap.entries().iterator());
        }
    
        @Override
        public int count(@CheckForNull Object element) {
          Collection<V> values = Maps.safeGet(multimap.asMap(), element);
          return (values == null) ? 0 : values.size();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top