Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 157 for Element (0.15 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// is case sensitive and done on a path element by element basis. A path
    	// element refers to the list of labels in the path split by the '/'
    	// separator. A request is a match for path p if every p is an element-wise
    	// prefix of p of the request path. Note that if the last element of the
    	// path is a substring of the last element in request path, it is not a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. src/reflect/type.go

    func appendGCProg(dst []byte, typ *abi.Type) []byte {
    	if typ.Kind_&abi.KindGCProg != 0 {
    		// Element has GC program; emit one element.
    		n := uintptr(*(*uint32)(unsafe.Pointer(typ.GCData)))
    		prog := typ.GcSlice(4, 4+n-1)
    		return append(dst, prog...)
    	}
    
    	// Element is small with pointer mask; use as literal bits.
    	ptrs := typ.PtrBytes / goarch.PtrSize
    	mask := typ.GcSlice(0, (ptrs+7)/8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // repeated until we hit "start+s.elemsize".
    // This tiling algorithm supports array data, since the type always refers to
    // the element type of the array. Single objects are considered the same as
    // single-element arrays.
    // The tiling algorithm may scan data past the end of the compiler-recognized
    // object, but any unused data within the allocation slot (i.e. within s.elemsize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

                      protected Set<String> create(String[] elements) {
                        int size = elements.length;
                        // Remove last element, if size > 1
                        Set<String> set1 =
                            (size > 1)
                                ? Sets.newHashSet(Arrays.asList(elements).subList(0, size - 1))
                                : Sets.newHashSet(elements);
                        // Remove first element, if size > 0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    // were indented wholesale (starting with the very first element, rather
    // than starting at the first line break).
    func (p *printer) indentList(list []ast.Expr) bool {
    	// Heuristic: indentList reports whether there are more than one multi-
    	// line element in the list, or if there is any element that is not
    	// starting on the same line as the previous one ends.
    	if len(list) >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/go/types/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
    - 49.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top