Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,069 for emptypb (0.18 sec)

  1. pkg/workloadapi/security/authorization.pb.go

    	(*Match)(nil),         // 5: istio.security.Match
    	(*Address)(nil),       // 6: istio.security.Address
    	(*StringMatch)(nil),   // 7: istio.security.StringMatch
    	(*emptypb.Empty)(nil), // 8: google.protobuf.Empty
    }
    var file_workloadapi_security_authorization_proto_depIdxs = []int32{
    	0,  // 0: istio.security.Authorization.scope:type_name -> istio.security.Scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. pkg/wasm/convert_test.go

    	cases := []struct {
    		name     string
    		input    []*anypb.Any
    		wantNack bool
    	}{
    		{
    			name:     "wrong typed config",
    			input:    []*anypb.Any{protoconv.MessageToAny(&emptypb.Empty{})},
    			wantNack: true,
    		},
    		{
    			name: "wrong value in typed struct",
    			input: []*anypb.Any{protoconv.MessageToAny(&core.TypedExtensionConfig{
    				Name: "wrong-input",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    						{
    							RequiresType: &envoy_jwt.JwtRequirement_ProviderName{
    								ProviderName: name,
    							},
    						},
    						{
    							RequiresType: &envoy_jwt.JwtRequirement_AllowMissing{
    								AllowMissing: &emptypb.Empty{},
    							},
    						},
    					},
    				},
    			},
    		})
    		outterOrList = append(outterOrList, &envoy_jwt.JwtRequirement{
    			RequiresType: &envoy_jwt.JwtRequirement_ProviderName{
    				ProviderName: name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility.go

    		}
    		return
    	}
    
    	emptyObj, err := c.Scheme.New(gvk)
    	if err != nil {
    		t.Fatal(err)
    	}
    	{
    		// compact before decoding since embedded RawExtension fields retain indenting
    		compacted := &bytes.Buffer{}
    		if err := gojson.Compact(compacted, actualJSON); err != nil {
    			t.Error(err)
    		}
    
    		jsonDecoded := emptyObj.DeepCopyObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 16:38:32 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    			existingPods: []*v1.Pod{splitAzureDiskPod, nonApplicablePod, emptyPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    			test:         "existing pods' counts ignore non-AzureDisk volumes",
    		},
    		{
    			newPod:       onePVCPod(azureDiskVolumeFilterType),
    			existingPods: []*v1.Pod{splitAzureDiskPod, nonApplicablePod, emptyPod},
    			filterName:   azureDiskVolumeFilterType,
    			maxVols:      3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  6. pkg/api/v1/pod/util_test.go

    	}
    
    	// emptyPod is a stub containing empty object names
    	emptyPod := &v1.Pod{
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{{
    				EnvFrom: []v1.EnvFromSource{{
    					SecretRef: &v1.SecretEnvSource{
    						LocalObjectReference: v1.LocalObjectReference{
    							Name: ""}}}}}},
    		},
    	}
    	VisitPodSecretNames(emptyPod, func(name string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  7. src/regexp/onepass.go

    	i := &p.Inst[p.Start]
    	if i.Op != syntax.InstEmptyWidth || (syntax.EmptyOp(i.Arg))&syntax.EmptyBeginText == 0 {
    		return "", i.Op == syntax.InstMatch, uint32(p.Start)
    	}
    	pc = i.Out
    	i = &p.Inst[pc]
    	for i.Op == syntax.InstNop {
    		pc = i.Out
    		i = &p.Inst[pc]
    	}
    	// Avoid allocation of buffer if prefix is empty.
    	if iop(i) != syntax.InstRune || len(i.Rune) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    		t.Errorf("got different type set. got=%v, wanted=%v", objTypeMap, expectedObjTypeMap)
    	}
    	for exp, expType := range expectedObjTypeMap {
    		actType, found := objTypeMap[exp]
    		if !found {
    			t.Errorf("missing type in rule types: %s", exp)
    			continue
    		}
    		expT, err := expType.ExprType()
    		if err != nil {
    			t.Errorf("fail to get cel type: %s", err)
    		}
    		actT, err := actType.ExprType()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    		t.Errorf("got different type set. got=%v, wanted=%v", objTypeMap, expectedObjTypeMap)
    	}
    	for exp, expType := range expectedObjTypeMap {
    		actType, found := objTypeMap[exp]
    		if !found {
    			t.Errorf("missing type in rule types: %s", exp)
    			continue
    		}
    		expT, err := expType.ExprType()
    		if err != nil {
    			t.Errorf("fail to get cel type: %s", err)
    		}
    		actT, err := actType.ExprType()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		emptyObj := &runtimetesting.Unstructured{Object: make(map[string]interface{})}
    		if _, _, err := scheme.ObjectKinds(emptyObj); !runtime.IsMissingKind(err) {
    			t.Errorf("unexpected error: %v", err)
    		}
    		emptyObj.SetGroupVersionKind(schema.GroupVersionKind{Kind: "Test"})
    		if _, _, err := scheme.ObjectKinds(emptyObj); !runtime.IsMissingVersion(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top