Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for Xadd (0.03 sec)

  1. src/crypto/x509/x509.go

    			extensionsAppended = true
    			break
    		}
    	}
    
    	rawAttributes, err := newRawAttributes(attributes)
    	if err != nil {
    		return nil, err
    	}
    
    	// If not included in attributes, add a new attribute for the
    	// extensions.
    	if len(extensions) > 0 && !extensionsAppended {
    		attr := struct {
    			Type  asn1.ObjectIdentifier
    			Value [][]pkix.Extension `asn1:"set"`
    		}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    			// Note that hcsshim.AddLoadBalancer() doesn't support endpoints with different ports, so only port from first endpoint is used.
    			// TODO(feiskyer): add support of different endpoint ports after hcsshim.AddLoadBalancer() add that.
    			if svcInfo.targetPort == 0 {
    				svcInfo.targetPort = int(ep.port)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			[]testInst{
    				{`T`, []string{`int`}, `struct{x int}`},
    				{`T`, []string{`int`}, `struct{x int}`},
    			},
    		},
    		{`package dupltype1; type T[P ~int] struct{ x P }; func (r *T[Q]) add(z T[Q]) { r.x += z.x }`,
    			[]testInst{
    				{`T`, []string{`Q`}, `struct{x Q}`},
    				{`T`, []string{`Q`}, `struct{x Q}`},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    )
    
    selects.config_setting_group(
        name = "api_indexable",
        match_any = [":api_indexable_flag"] + ADDITIONAL_API_INDEXABLE_SETTINGS,
        visibility = ["//visibility:public"],
    )
    
    # DO NOT ADD ANY NEW EXCEPTIONS TO THIS LIST!
    # Instead, please use public APIs or public build rules TF provides.
    # If you need functionality that is not exposed, we will work with you to expand our public APIs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    	sets := make([]*apps.StatefulSet, 10)
    	perm := rand.Perm(10)
    	for i, v := range perm {
    		sets[i] = newStatefulSet(10)
    		sets[i].CreationTimestamp = metav1.NewTime(sets[i].CreationTimestamp.Add(time.Duration(v) * time.Second))
    	}
    	sort.Sort(overlappingStatefulSets(sets))
    	if !sort.IsSorted(overlappingStatefulSets(sets)) {
    		t.Error("ascendingOrdinal fails to sort Pods")
    	}
    	for i, v := range perm {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    'metadata' is a serialized TPUCompileMetadataProto describing the shapes and
    types of the inputs to the computation, as well as a mapping onto the TPU pod
    topology.
    'producer_name' is a string describing the name of the framework that add support for running this portion of the model on TPUs.
      }];
    
      let arguments = (ins
        Variadic<TF_Tensor>:$args,
        Variadic<TF_Int64Tensor>:$static_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top