Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for capsule (0.24 sec)

  1. pilot/pkg/networking/core/listener.go

    				// for older proxies, it defaults to iptables redirect.  If the
    				// listener's capture mode specifies NONE, then the proxy wants
    				// this listener alone to be on a physical port. If the
    				// listener's capture mode is default, then its same as
    				// iptables i.e. BindToPort is false.
    				bind.bindToPort = true
    			} else if strings.HasPrefix(egressListener.IstioListener.Bind, model.UnixAddressPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		filterRules := proxier.filterRules
    		natChains := proxier.natChains
    		natRules := proxier.natRules
    
    		// Capture the clusterIP.
    		if hasInternalEndpoints {
    			natRules.Write(
    				"-A", string(kubeServicesChain),
    				"-m", "comment", "--comment", fmt.Sprintf(`"%s cluster IP"`, svcPortNameString),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    				// the cluster will be dropped, but traffic from inside
    				// the cluster may still be accepted.
    				externalTrafficFilterVerdict = "drop"
    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		// Capture the clusterIP.
    		tx.Add(&knftables.Element{
    			Set: clusterIPsSet,
    			Key: []string{svcInfo.ClusterIP().String()},
    		})
    		if hasInternalEndpoints {
    			tx.Add(&knftables.Element{
    				Map: serviceIPsMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
      // Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

       * supports removal operations, and these are reflected in the underlying multimap.
       *
       * <p>It's acceptable for the underlying multimap to contain null keys, and even null values
       * provided that the function is capable of accepting null input. The transformed multimap might
       * contain null values, if the function sometimes gives a null result.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    				continue
    			}
    			proxier.ipsetList[kubeLoopBackIPSet].activeEntries.Insert(entry.String())
    		}
    
    		// Capture the clusterIP.
    		// ipset call
    		entry := &utilipset.Entry{
    			IP:       svcInfo.ClusterIP().String(),
    			Port:     svcInfo.Port(),
    			Protocol: protocol,
    			SetType:  utilipset.HashIPPort,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    				// Anonymous functions are considered part of the
    				// init expression/func declaration which contains
    				// them: use existing package-level declaration info.
    				decl := check.decl // capture for use in closure below
    				iota := check.iota // capture for use in closure below (go.dev/issue/22345)
    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    // if the M's call stack buffer is occupied, it does the comparison against that
    // sample's magnitude.
    //
    // Second, having unlocked a mutex the M checks to see if it should capture the
    // call stack into its local buffer. Finally, when the M unlocks its last mutex,
    // it transfers the local buffer into the profile. As part of that step, it also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	return func(o *frameworkOptions) {
    		o.parallelizer = parallelize.NewParallelizer(parallelism)
    	}
    }
    
    // CaptureProfile is a callback to capture a finalized profile.
    type CaptureProfile func(config.KubeSchedulerProfile)
    
    // WithCaptureProfile sets a callback to capture the finalized profile.
    func WithCaptureProfile(c CaptureProfile) Option {
    	return func(o *frameworkOptions) {
    		o.captureProfile = c
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    				// Anonymous functions are considered part of the
    				// init expression/func declaration which contains
    				// them: use existing package-level declaration info.
    				decl := check.decl // capture for use in closure below
    				iota := check.iota // capture for use in closure below (go.dev/issue/22345)
    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top