Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for elemEnds (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
         * @return paths of all artifacts placed on the classpath.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    }
    
    // ChanArgs contains Type fields specific to TCHANARGS types.
    type ChanArgs struct {
    	T *Type // reference to a chan type whose elements need a width check
    }
    
    // // FuncArgs contains Type fields specific to TFUNCARGS types.
    type FuncArgs struct {
    	T *Type // reference to a func type whose elements need a width check
    }
    
    // Chan contains Type fields specific to channel types.
    type Chan struct {
    	Elem *Type   // element type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // `oper` and `num_dims` with the corresponding number of dimensions. On return,
    // for every i where `num_dims[i]` > 0, `dims[i]` will be an array of
    // `num_dims[i]` elements. A value of -1 for `num_dims[i]` indicates that the
    // i-th shape in the list is unknown.
    //
    // The elements of `dims` will point to addresses in `storage` which must be
    // large enough to hold at least `storage_size` int64_ts.  Ideally, `num_shapes`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    			})
    		}
    	}
    
    	// Now write loadbalancing rule
    	var elements []string
    	for i, ep := range endpoints {
    		epInfo, ok := ep.(*endpointInfo)
    		if !ok {
    			continue
    		}
    
    		elements = append(elements,
    			strconv.Itoa(i), ":", "goto", epInfo.chainName,
    		)
    		if i != len(endpoints)-1 {
    			elements = append(elements, ",")
    		}
    	}
    	tx.Add(&knftables.Rule{
    		Chain: svcChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					}},
    				// (This test shows an array cannpt be correlated by index with its old value)
    				expectError{applyPatchOperation{
    					"add new, valid fields to elements of the array, failing to ratchet unchanged old fields within the array elements by correlating by index due to atomic list",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": []interface{}{
    							map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    			fields := utyp.fields
    			if _, ok := e.Elts[0].(*ast.KeyValueExpr); ok {
    				// all elements must have keys
    				visited := make([]bool, len(fields))
    				for _, e := range e.Elts {
    					kv, _ := e.(*ast.KeyValueExpr)
    					if kv == nil {
    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*ast.Ident)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

      //     ]
      // If the input contains a zero, the division is impossible but
      // if we take the calculation that gave the first gradient
      // (3 * 5 * 6)/3 is equal to 5 * 6
      // the trick will be to cumprod the elements on the axis without
      // the element at the current position (3 in the example above).
      // We will take as example:
      // [
      //   [
      //     [3.0, 4.0],
      //     [5.0, 6.0],
      //     [7.0, 8.0]
      //   ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. internal/s3select/select_test.go

    			wantResult: `{"_1":1.5,"_2":2.5}`,
    		},
    		{
    			name:  "limit-1",
    			query: `SELECT * FROM S3Object[*].elements[*] LIMIT 1`,
    			requestXML: []byte(`
    <?xml version="1.0" encoding="UTF-8"?>
    <SelectObjectContentRequest>
        <Expression>select * from s3object[*].elements[*] s where s.element_type = '__elem__merfu'</Expression>
        <ExpressionType>SQL</ExpressionType>
        <InputSerialization>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    			fields := utyp.fields
    			if _, ok := e.ElemList[0].(*syntax.KeyValueExpr); ok {
    				// all elements must have keys
    				visited := make([]bool, len(fields))
    				for _, e := range e.ElemList {
    					kv, _ := e.(*syntax.KeyValueExpr)
    					if kv == nil {
    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*syntax.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top