Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for rulesv4 (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    //
    // Note, y is always non-negative.
    //
    // Note, ISELZ is intentionally not used in lower. Where possible, ISEL is converted to ISELZ in late lower
    // after all the ISEL folding rules have been exercised.
    
    ((Rsh64U|Lsh64)x64 <t> x y)  => (ISEL [0] (S(R|L)D <t> x y) (MOVDconst [0])        (CMPUconst y [64]))
    ((Rsh64U|Lsh64)x32 <t> x y)  => (ISEL [0] (S(R|L)D <t> x y) (MOVDconst [0])        (CMPWUconst y [64]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. staging/publishing/rules.yaml

    rules:
    - destination: apimachinery
      branches:
      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.28
        go: 1.21.11
        source:
          branch: release-1.28
          dirs:
          - staging/src/k8s.io/apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    					rules[5],
    				},
    			},
    			opts: ObjectOpts{
    				IsLatest: true,
    				UserTags: "key1=val1",
    				Name:     "obj-1",
    				Size:     1*humanize.MiByte - 1,
    			},
    			hasRules: true,
    		},
    		{ // PUT version with size based filters
    			lc: Lifecycle{
    				Rules: []Rule{
    					rules[1],
    					rules[2],
    					rules[3],
    					rules[4],
    					rules[5],
    				},
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    			proxier.needFullSync = true
    		}
    	}()
    
    	if !tryPartialSync {
    		// Ensure that our jump rules (eg from PREROUTING to KUBE-SERVICES) exist.
    		// We can't do this as part of the iptables-restore because we don't want
    		// to specify/replace *all* of the rules in PREROUTING, etc.
    		//
    		// We need to create these rules when kube-proxy first starts, and we need
    		// to recreate them if the utiliptables Monitor detects that iptables has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    	{utiliptables.TableFilter, utiliptables.ChainForward, kubeForwardChain, "kubernetes forwarding rules"},
    	{utiliptables.TableFilter, utiliptables.ChainInput, kubeNodePortChain, "kubernetes health check rules"},
    	{utiliptables.TableFilter, utiliptables.ChainInput, kubeProxyFirewallChain, "kube-proxy firewall rules"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Required.
      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
    	// +listType=atomic
    	Rules []RuleWithOperations `json:"rules,omitempty" protobuf:"bytes,3,rep,name=rules"`
    
    	// FailurePolicy defines how unrecognized errors from the admission endpoint are handled -
    	// allowed values are Ignore or Fail. Defaults to Fail.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing nftables until Services and Endpoints have been received from master")
    		return
    	}
    
    	//
    	// Below this point we will not return until we try to write the nftables rules.
    	//
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	exportTo map[host.Name]sets.Set[visibility.Instance]
    	// Map of dest rule host and the merged destination rules for that host.
    	// Only stores specific non-wildcard destination rules
    	specificDestRules map[host.Name][]*ConsolidatedDestRule
    	// Map of dest rule host and the merged destination rules for that host.
    	// Only stores wildcard destination rules
    	wildcardDestRules map[host.Name][]*ConsolidatedDestRule
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    	ps.initVirtualServices(env)
    
    	t.Run("resolve shortname", func(t *testing.T) {
    		rules := ps.VirtualServicesForGateway("ns1", gatewayName)
    		if len(rules) != 3 {
    			t.Fatalf("wanted 3 virtualservice for gateway %s, actually got %d", gatewayName, len(rules))
    		}
    		gotHTTPHosts := make([]string, 0)
    		for _, r := range rules {
    			vs := r.Spec.(*networking.VirtualService)
    			for _, route := range vs.GetHttp() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top