Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for node_ (0.03 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                }
            }
        }
    
        /**
         * Adds a dependency node to the result.
         *
         * @param node the dependency node
         */
        void addNode(Node node) {
            nodes.add(node);
        }
    
        /**
         * Adds a dependency to the result. This method populates the {@link #nodes}, {@link #paths},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	c := pprofCommands[cmd[0]]
    	if c == nil {
    		panic("unexpected nil command")
    	}
    
    	cfg = applyCommandOverrides(cmd[0], c.format, cfg)
    
    	// Create label pseudo nodes before filtering, in case the filters use
    	// the generated nodes.
    	generateTagRootsLeaves(p, cfg, o.UI)
    
    	// Delay focus after configuring report to get percentages on all samples.
    	relative := cfg.RelativePercentages
    	if relative {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

      void runOnOperation() override;
    
     private:
      // Set the quantization parameters of the input nodes. These parameters are
      // converted from the user specified input value ranges. The input nodes with
      // non-float tensor types will be skipped because they are not quantizable.
      // Return true if number of input nodes doesn't equal to that of the input
      // ranges.
      bool SetInputNodesQuantizationParams(func::FuncOp func);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller.go

    	c.endpoints = newEndpointSliceController(c)
    
    	// This is for getting the node IPs of a selected set of nodes
    	c.nodes = kclient.NewFiltered[*v1.Node](kubeClient, kclient.Filter{ObjectTransform: kubelib.StripNodeUnusedFields})
    	registerHandlers[*v1.Node](c, c.nodes, "Nodes", c.onNodeEvent, nil)
    
    	c.podsClient = kclient.NewFiltered[*v1.Pod](kubeClient, kclient.Filter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  5. cmd/notification.go

    	// can easily eat into the internode bandwidth. This function would be mostly
    	// TX saturating, however there are situations where a RX might also saturate.
    	// To avoid these problems we must split the work at scale. With 1000 node
    	// setup becoming a reality we must try to shard the work properly such as
    	// pick 10 nodes that precisely can send those 100 requests the first node
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        model_dir: str,
        tags: Collection[str],
        representative_dataset_map: rd.RepresentativeDatasetMapping,
    ) -> None:
      """Runs the graph for calibration in graph mode.
    
      This function assumes _graph mode_ (used when legacy TF1 is used or when eager
      mode is explicitly disabled) when running the graph. This step is used in
      order to collect the statistics in CustomAggregatorOp for quantization using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/volume/util/util.go

    			if matchExpr.Key == v1.LabelHostname && matchExpr.Operator == v1.NodeSelectorOpIn {
    				if nodes == nil {
    					nodes = sets.New(matchExpr.Values...)
    				} else {
    					nodes = nodes.Intersection(sets.New(matchExpr.Values...))
    				}
    			}
    		}
    		result = result.Union(nodes)
    	}
    
    	return sets.List(result)
    }
    
    // GetPodVolumeNames returns names of volumes that are used in a pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     * <p>This type is intended to contain values that are calculated as nodes in the work graph, but which may also be calculated
     * on demand. An instance of this type can be used as a node in the work graph.
     * </p>
     *
     * <p>Note that when used as a work node, any failure to calculate the value is collected and not rethrown. This means that the node is considered to have succeeded and any dependent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	sc := clienttest.NewWriter[*corev1.Service](t, s.client)
    	pod1 := generatePod("127.0.0.1", "pod1", testNS, "sa1", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod1)
    	fx.WaitOrFail(t, "xds")
    
    	pod2 := generatePod("127.0.0.2", "pod2", testNS, "sa2", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod2)
    	fx.WaitOrFail(t, "xds")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/taint_eviction.go

    		AddFunc: controllerutil.CreateAddNodeHandler(func(node *v1.Node) error {
    			tm.NodeUpdated(nil, node)
    			return nil
    		}),
    		UpdateFunc: controllerutil.CreateUpdateNodeHandler(func(oldNode, newNode *v1.Node) error {
    			tm.NodeUpdated(oldNode, newNode)
    			return nil
    		}),
    		DeleteFunc: controllerutil.CreateDeleteNodeHandler(logger, func(node *v1.Node) error {
    			tm.NodeUpdated(node, nil)
    			return nil
    		}),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top