Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,272 for emptypb (0.11 sec)

  1. pkg/config/analysis/local/helpers_test.go

    	rname := resource.NewFullName(resource.Namespace(ns), resource.LocalName(name))
    	return &resource.Instance{
    		Metadata: resource.Metadata{
    			FullName: rname,
    			Version:  resource.Version(version),
    		},
    		Message: &emptypb.Empty{},
    		Origin: &kube.Origin{
    			FullName: rname,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. istioctl/pkg/util/configdump/wrapper.go

    	typ, err := r.Types.FindMessageByURL(url)
    	if err != nil {
    		// Here we ignore the error since we want istioctl to ignore unknown types due to the Envoy version change
    		msg := exprpb.Type{TypeKind: &exprpb.Type_Dyn{Dyn: &emptypb.Empty{}}}
    		return msg.ProtoReflect().Type(), nil
    	}
    	return typ, nil
    }
    
    // Wrapper is a wrapper around the Envoy ConfigDump
    // It has extra helper functions for handling any/struct/marshal protobuf pain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/comparator.go

    	if err != nil {
    		// istioctl should keep going if it encounters new Envoy versions; ignore unknown types
    		return &exprpb.Type{TypeKind: &exprpb.Type_Dyn{Dyn: &emptypb.Empty{}}}, nil
    	}
    	return legacyproto.MessageV1(mt.New().Interface()), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/regexp/syntax/prog.go

    }
    
    // StartCond returns the leading empty-width conditions that must
    // be true in any match. It returns ^EmptyOp(0) if no matches are possible.
    func (p *Prog) StartCond() EmptyOp {
    	var flag EmptyOp
    	pc := uint32(p.Start)
    	i := &p.Inst[pc]
    Loop:
    	for {
    		switch i.Op {
    		case InstEmptyWidth:
    			flag |= EmptyOp(i.Arg)
    		case InstFail:
    			return ^EmptyOp(0)
    		case InstCapture, InstNop:
    			// skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/empty.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/testdata/empty.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. 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)
Back to top