Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for mixer (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("kind"), names.Kind, "may have mixed case, but should otherwise match: "+strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(strings.ToLower(names.ListKind)); len(names.ListKind) > 0 && len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("listKind"), names.ListKind, "may have mixed case, but should otherwise match: "+strings.Join(errs, ",")))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    }
    
    // CHECK: [[REPLICATE:%.+]]:4 = tf_device.replicate
    // CHECK: return [[REPLICATE]]#0, [[REPLICATE]]#2, [[REPLICATE]]#1, [[REPLICATE]]#3
    
    // -----
    
    // Ensures that mixed partitioned and replicated outputs
    // works in the multi-replica case.
    func.func @mixed_partitioned_outputs(%arg0: tensor<?xi32>) -> (tensor<?xi32>, tensor<?xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    	} else if errs := utilvalidation.IsDNS1035Label(strings.ToLower(gvk.Kind)); len(errs) > 0 {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("kind"), gvk.Kind, "may have mixed case, but should otherwise match: "+strings.Join(errs, ",")))
    	}
    
    	return allErrors
    }
    
    type groupVersion struct {
    	Group   string
    	Version string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    												"message": "strings must have odd length",
    											},
    										},
    									},
    								},
    							},
    						},
    					}},
    				applyPatchOperation{
    					"have mixed ratcheting of one or two CEL rules, object4 is ratcheted by one rule, object1 is ratcheting 2 rules",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": 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)
  5. pilot/pkg/networking/core/listener.go

    			listenerOpts.port.Port, listenerOpts.port.Protocol, currentListenerEntry.protocol, conflictType)
    		return
    	}
    
    	// In general, for handling conflicts we:
    	// * Turn on sniffing if its HTTP and TCP mixed
    	// * Merge filter chains
    	switch conflictType {
    	case NoConflict, AutoOverHTTP:
    		// This is a new entry (NoConflict), or completely overriding (AutoOverHTTP); add it to the map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    		if rand.Intn(10) == 0 {
    			x[i] = ' '
    		} else {
    			x[i] = 'x'
    		}
    	}
    	return string(x)
    }
    
    var stringdata = []struct{ name, data string }{
    	{"ASCII", makeFieldsInputASCII()},
    	{"Mixed", makeFieldsInput()},
    }
    
    func BenchmarkFields(b *testing.B) {
    	for _, sd := range stringdata {
    		b.Run(sd.name, func(b *testing.B) {
    			for j := 1 << 4; j <= 1<<20; j <<= 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/strategy_test.go

    			assert.Equal(t, api.AppArmorProfileTypeUnconfined, pod.Spec.Containers[0].SecurityContext.AppArmorProfile.Type)
    		},
    		expectWarning: true,
    	}, {
    		description: "Mixed annotations and fields",
    		pod: &api.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Annotations: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    			x[i] = ' '
    		} else {
    			x[i] = 'x'
    		}
    	}
    	return x
    }
    
    var bytesdata = []struct {
    	name string
    	data []byte
    }{
    	{"ASCII", makeFieldsInputASCII()},
    	{"Mixed", makeFieldsInput()},
    }
    
    func BenchmarkFields(b *testing.B) {
    	for _, sd := range bytesdata {
    		b.Run(sd.name, func(b *testing.B) {
    			for j := 1 << 4; j <= 1<<20; j <<= 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    				} else {
    					msg = "missing type parameter name"
    					// go.dev/issue/60812
    					if len(list) == 1 {
    						msg += " or invalid array length"
    					}
    				}
    			} else {
    				msg = "mixed named and unnamed parameters"
    			}
    			p.syntaxErrorAt(errPos, msg)
    		}
    	}
    
    	return
    }
    
    func (p *parser) badExpr() *BadExpr {
    	b := new(BadExpr)
    	b.pos = p.pos()
    	return b
    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. okhttp/api/okhttp.api

    	public static final field Companion Lokhttp3/MultipartBody$Companion;
    	public static final field DIGEST Lokhttp3/MediaType;
    	public static final field FORM Lokhttp3/MediaType;
    	public static final field MIXED Lokhttp3/MediaType;
    	public static final field PARALLEL Lokhttp3/MediaType;
    	public final fun -deprecated_boundary ()Ljava/lang/String;
    	public final fun -deprecated_parts ()Ljava/util/List;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top