Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for chain (0.23 sec)

  1. pkg/proxy/nftables/proxier.go

    	// now, and record the time that they become stale in staleChains so they can be
    	// deleted later.
    	existingChains, err := proxier.nftables.List(context.TODO(), "chains")
    	if err == nil {
    		for _, chain := range existingChains {
    			if isServiceChainName(chain) {
    				if !activeChains.Has(chain) {
    					tx.Flush(&knftables.Chain{
    						Name: chain,
    					})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    				}
    				var chains []string
    				for _, fc := range listeners[0].FilterChains {
    					for _, cidr := range fc.FilterChainMatch.PrefixRanges {
    						chains = append(chains, cidr.AddressPrefix)
    					}
    				}
    				// There should not be multiple filter chains with same CIDR match
    				if !reflect.DeepEqual(chains, tt.expectedChains) {
    					t.Fatalf("expected filter chains %v, found %v", tt.expectedChains, chains)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

                  // this has 2 benefits
                  // 1. for long chains of futures strung together with setFuture we consume less stack
                  // 2. we avoid allocating Cancellation objects at every level of the cancellation
                  //    chain
                  // We can only do this for TrustedFuture, because TrustedFuture.cancel is final and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    			UID:       uid,
    		},
    		Spec: apps.StatefulSetSpec{
    			Selector: &metav1.LabelSelector{
    				// Purposely leaving MatchLabels nil, so to ensure it will break if any link
    				// in the chain ignores the set-based MatchExpressions.
    				MatchLabels:      nil,
    				MatchExpressions: testMatchExpressions,
    			},
    			Replicas: ptr.To(replicas),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    			Disabled: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    				ClusterMatched:     "inbound|81||",
    				StrictMatch:        true,
    			},
    			Permissive: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    	nested, runtime, processed := createPodWorkers()
    	w := &timeIncrementingWorkers{
    		w:       nested,
    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    			// TODO: this is an eager loop, we might want to lazily read from in only once
    			// ch is empty
    			for range in {
    				w.waitForPod(uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // result tensorlist based on the operand's of the `If` op.
    llvm::DenseMap<int, int> MapTensorListResultToArgument(func::FuncOp func) {
      // `map_fn` will trace upwards along the use-def chain of the ssa value. It
      // starts from the last ssa value (returned by the function), and check its
      // parent op iteratively. If the root ssa value appears in the function's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string logLevel = 12;
    
      // Configuration for the CNI Repair controller.
      CNIRepairConfig repair = 13;
    
      // Configure the plugin as a chained CNI plugin. When true, the configuration is added to the CNI chain; when false,
      // the configuration is added as a standalone file in the CNI configuration directory.
      google.protobuf.BoolValue chained = 14;
    
      // The resource quotas configration for the CNI DaemonSet.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	pconn = &persistConn{
    		t:             t,
    		cacheKey:      cm.key(),
    		reqch:         make(chan requestAndChan, 1),
    		writech:       make(chan writeRequest, 1),
    		closech:       make(chan struct{}),
    		writeErrCh:    make(chan error, 1),
    		writeLoopDone: make(chan struct{}),
    	}
    	trace := httptrace.ContextClientTrace(ctx)
    	wrapErr := func(err error) error {
    		if cm.proxyURL != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top