Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for rulesv6 (0.51 sec)

  1. src/main/resources/fess_indices/_cloud/fess.json

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    			},
    		},
    	}
    	successPolicy := &batch.SuccessPolicy{
    		Rules: []batch.SuccessPolicyRule{
    			{
    				SucceededIndexes: ptr.To("1,3-7"),
    				SucceededCount:   ptr.To[int32](4),
    			},
    		},
    	}
    	updatedSuccessPolicy := &batch.SuccessPolicy{
    		Rules: []batch.SuccessPolicyRule{
    			{
    				SucceededIndexes: ptr.To("1,3-7"),
    				SucceededCount:   ptr.To[int32](5),
    			},
    		},
    	}
    
    	cases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    			rules = append(rules, rule)
    		}
    	}
    	return rules
    }
    
    // checkIptables to check expected iptables chain and rules. The got rules must have same number and order as the
    // expected rules.
    func checkIptables(t *testing.T, ipt *iptablestest.FakeIPTables, epIpt netlinktest.ExpectedIptablesChain) {
    	for epChain, epRules := range epIpt {
    		rules := getRules(ipt, utiliptables.Chain(epChain))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Rules = append(m.Rules, PodFailurePolicyRule{})
    			if err := m.Rules[len(m.Rules)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Rules = append(m.Rules, v11.RuleWithOperations{})
    			if err := m.Rules[len(m.Rules)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 187.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      namespace: istio-system
    
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        app: istio-reader
        release: istio
      name: istio-reader-clusterrole-istio-system
    rules:
    - apiGroups:
      - config.istio.io
      - security.istio.io
      - networking.istio.io
      - authentication.istio.io
      - rbac.istio.io
      resources:
      - '*'
      verbs:
      - get
      - list
      - watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Rules = append(m.Rules, RuleWithOperations{})
    			if err := m.Rules[len(m.Rules)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    			}
    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Rules = append(m.Rules, IngressRule{})
    			if err := m.Rules[len(m.Rules)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		case 4:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		warnings = appendErrors(warnings, workloadSelectorValidation.Warning)
    
    		if in.Action == security_beta.AuthorizationPolicy_CUSTOM {
    			if in.Rules == nil {
    				errs = appendErrors(errs, fmt.Errorf("CUSTOM action without `rules` is meaningless as it will never be triggered, "+
    					"add an empty rule `{}` if you want it be triggered for every request"))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.setNullableStr) != null_type",
    
    				// a field that is set to null is treated the same as an absent field in validation rules
    				"!has(self.setToNullNullableStr)",
    			},
    			errors: map[string]string{
    				// the types used in validation rules don't integrate with CEL's Null type, so
    				// all attempts to compare values with null are caught by the type checker at compilation time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top