Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for Binary (0.27 sec)

  1. pkg/proxy/iptables/proxier.go

    	// kubeProxyFirewallChain is the kube-proxy firewall chain
    	kubeProxyFirewallChain utiliptables.Chain = "KUBE-PROXY-FIREWALL"
    
    	// kube proxy canary chain is used for monitoring rule reload
    	kubeProxyCanaryChain utiliptables.Chain = "KUBE-PROXY-CANARY"
    
    	// kubeletFirewallChain is a duplicate of kubelet's firewall containing
    	// the anti-martian-packet rule. It should not be used for any other
    	// rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SetsTest.java

        }
      }
    
      /** The 0-ary cartesian product is a single empty list. */
      public void testCartesianProduct_zeroary() {
        assertThat(Sets.cartesianProduct()).containsExactly(list());
      }
    
      /** A unary cartesian product is one list of size 1 for each element in the input set. */
      public void testCartesianProduct_unary() {
        assertThat(Sets.cartesianProduct(set(1, 2))).containsExactly(list(1), list(2));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	} else if reqs.Goroutine == event.MustNotHave && ctx.G != NoGoroutine {
    		return fmt.Errorf("expected no goroutine but had one")
    	}
    	return nil
    }
    
    // gcState is a trinary variable for the current state of the GC.
    //
    // The third state besides "enabled" and "disabled" is "undetermined."
    type gcState uint8
    
    const (
    	gcUndetermined gcState = iota
    	gcNotRunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "header match",
    						Headers: map[string]*networking.StringMatch{
    							"cookie": {
    								MatchType: &networking.StringMatch_Exact{Exact: "canary"},
    							},
    						},
    					},
    				},
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example2.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top