Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 185 for nodeIPs (0.1 sec)

  1. pilot/pkg/controllers/untaint/nodeuntainter.go

    	})
    	nodes := kclient.NewFiltered[*v1.Node](kubeClient, kclient.Filter{ObjectTransform: kubelib.StripNodeUnusedFields})
    	nt := &NodeUntainter{
    		podsClient:  podsClient,
    		nodesClient: nodes,
    		cnilabels:   labels.Instance(istioCniLabels),
    		ourNs:       ns,
    	}
    	nt.setup(stop)
    	return nt
    }
    
    func (n *NodeUntainter) setup(stop <-chan struct{}) {
    	nodes := krt.WrapClient[*v1.Node](n.nodesClient)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/TransformedProjectArtifactSetCodec.kt

            return decodePreservingSharedIdentity {
                val targetVariant = readNonNull<ComponentVariantIdentifier>()
                val nodes: List<TransformStepNode> = readList().uncheckedCast()
                TransformedProjectArtifactSet(targetVariant, nodes)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_compile_util.cc

      // TODO(b/74182462): We implement this by creating a new dummy Graph including
      // _Arg nodes, and let CompileGraph walk it. This could be optimized.
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    
      // First create the actual node we care about computing.
      TF_ASSIGN_OR_RETURN(Node * main_node, graph->AddNode(node_def));
    
      // Create dummy _Arg nodes. Link these to `node` and also via a control
      // dependency edge to the _SOURCE node.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/temp.go

    	"cmd/compile/internal/types"
    )
    
    // initStackTemp appends statements to init to initialize the given
    // temporary variable to val, and then returns the expression &tmp.
    func initStackTemp(init *ir.Nodes, tmp *ir.Name, val ir.Node) *ir.AddrExpr {
    	if val != nil && !types.Identical(tmp.Type(), val.Type()) {
    		base.Fatalf("bad initial value for %L: %L", tmp, val)
    	}
    	appendWalkStmt(init, ir.NewAssignStmt(base.Pos, tmp, val))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/RelevantProjectsRegistry.kt

        private
        val targetProjects = mutableSetOf<ProjectState>()
    
        fun relevantProjects(nodes: List<Node>): Set<ProjectState> {
            val result = mutableSetOf<ProjectState>()
            for (project in targetProjects) {
                collect(project, result)
            }
            for (node in nodes) {
                val project = projectStateOf(node)
                if (project != null && isLocalProject(project)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-network.go

    		"Average dial time of internode TCP calls in nanoseconds")
    	internodeSentBytesTotalMD = NewCounterMD(internodeSentBytesTotal,
    		"Total number of bytes sent to other peer nodes")
    	internodeRecvBytesTotalMD = NewCounterMD(internodeRecvBytesTotal,
    		"Total number of bytes received from other peer nodes")
    )
    
    // loadNetworkInternodeMetrics - reads internode network metrics.
    //
    // This is a `MetricsLoaderFn`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    func (g *KubeVersionGetter) KubeletVersions() (map[string][]string, error) {
    	nodes, err := g.client.CoreV1().Nodes().List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		return nil, errors.New("couldn't list all nodes in cluster")
    	}
    
    	// map kubelet version to a list of node names
    	kubeletVersions := make(map[string][]string)
    	for _, node := range nodes.Items {
    		kver := node.Status.NodeInfo.KubeletVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

      // on parameter servers.
      const std::string jobType = "ps";
      const std::string nodeType = "_Arg";
      const std::string attrKey = "T";
      for (const Node* node : graph.nodes()) {
        if (node->type_string() == nodeType) {
          auto device_name = node->assigned_device_name();
          DeviceNameUtils::ParsedName device;
          if (DeviceNameUtils::ParseFullName(device_name, &device) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. prow/config/metrics/metrics.yaml

    rules:
    - apiGroups:
      - metrics.k8s.io
      resources:
      - pods
      - nodes
      verbs:
      - get
      - list
      - watch
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        k8s-app: metrics-server
      name: system:metrics-server
    rules:
    - apiGroups:
      - ""
      resources:
      - nodes/metrics
      verbs:
      - get
    - apiGroups:
      - ""
      resources:
      - pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. hack/ginkgo-e2e.sh

    case "${E2E_TEST_DEBUG_TOOL:-ginkgo}" in
      ginkgo)
        program=("${ginkgo}")
        if [[ -n "${GINKGO_PARALLEL_NODES:-}" ]]; then
          program+=("--nodes=${GINKGO_PARALLEL_NODES}")
        elif [[ ${GINKGO_PARALLEL} =~ ^[yY]$ ]]; then
          program+=("--nodes=25")
        fi
        program+=("${ginkgo_args[@]:+${ginkgo_args[@]}}")
        ;;
      delve) program=("dlv" "exec") ;;
      gdb) program=("gdb") ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top