Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 207 for nodeIPs (0.15 sec)

  1. cmd/kube-proxy/app/server_windows.go

    func (s *ProxyServer) platformSetup(ctx context.Context) error {
    	// Preserve backward-compatibility with the old secondary IP behavior
    	if s.PrimaryIPFamily == v1.IPv4Protocol {
    		s.NodeIPs[v1.IPv6Protocol] = net.IPv6zero
    	} else {
    		s.NodeIPs[v1.IPv4Protocol] = net.IPv4zero
    	}
    	return nil
    }
    
    // platformCheckSupported is called immediately before creating the Proxier, to check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/envoy/proxy.go

    	"istio.io/istio/pkg/log"
    )
    
    type envoy struct {
    	ProxyConfig
    	extraArgs []string
    }
    
    // Envoy binary flags
    type ProxyConfig struct {
    	LogLevel          string
    	ComponentLogLevel string
    	NodeIPs           []string
    	Sidecar           bool
    	LogAsJSON         bool
    	OutlierLogPath    string
    
    	BinaryPath    string
    	ConfigPath    string
    	ConfigCleanup bool
    	AdminPort     int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/envoy/proxy_test.go

    	proxyConfig.Concurrency = &wrapperspb.Int32Value{Value: 8}
    
    	cfg := ProxyConfig{
    		LogLevel:          "trace",
    		ComponentLogLevel: "misc:error",
    		NodeIPs:           []string{"10.75.2.9", "192.168.11.18"},
    		BinaryPath:        proxyConfig.BinaryPath,
    		ConfigPath:        proxyConfig.ConfigPath,
    		ConfigCleanup:     true,
    		AdminPort:         proxyConfig.ProxyAdminPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_util.h

    // Attribute indicating that some ops in this node's XLA computation has control
    // dependency on this node. Attribute value will always be "true".
    extern const char kXlaConnectedToXlaComputationAttrName[];
    
    // Attribute indicating that this node has control dependency on some ops in
    // this node's XLA computation. Attribute value will always be "true".
    extern const char kXlaConnectedFromXlaComputationAttrName[];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeTraverser.java

      public abstract Iterable<T> children(T root);
    
      /**
       * Returns an unmodifiable iterable over the nodes in a tree structure, using pre-order traversal.
       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TreeTraverser.java

      public abstract Iterable<T> children(T root);
    
      /**
       * Returns an unmodifiable iterable over the nodes in a tree structure, using pre-order traversal.
       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. pkg/registry/core/node/strategy.go

    )
    
    // nodeStrategy implements behavior for nodes
    type nodeStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Nodes is the default logic that applies when creating and updating Node
    // objects.
    var Strategy = nodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for nodes.
    func (nodeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. tensorflow/cc/ops/while_loop.cc

    // `scope`. `enter_output` is the `loop_var_idx`-th Enter node's output.
    Status CreateMerge(const Scope& scope, int loop_var_idx,
                       const Output& enter_output, Output* merge_output) {
      // The merge nodes accept the while loop's back edges as an input (i.e. the
      // not-yet-created next iteration nodes). Use the underlying NodeBuilder API
      // directly to create the back edge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    // The size of the image is used as the base score, scaled by a factor which considers how much nodes the image has "spread" to.
    // This heuristic aims to mitigate the undesirable "node heating problem", i.e., pods get assigned to the same or
    // a few nodes due to image locality.
    func scaledImageScore(imageState *framework.ImageStateSummary, totalNumNodes int) int64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	return
    }
    
    // PreScore builds and writes cycle state used by Score and NormalizeScore.
    func (pl *TaintToleration) PreScore(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod, nodes []*framework.NodeInfo) *framework.Status {
    	if len(nodes) == 0 {
    		return nil
    	}
    	tolerationsPreferNoSchedule := getAllTolerationPreferNoSchedule(pod.Spec.Tolerations)
    	state := &preScoreState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top