Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for Nodes (0.06 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    }
    
    // checkNodeTopologyDistribution updates Nodes in the topology cache and then
    // queues any Services that are past the threshold.
    func (c *Controller) checkNodeTopologyDistribution(logger klog.Logger) {
    	if c.topologyCache == nil {
    		return
    	}
    	nodes, err := c.nodeLister.List(labels.Everything())
    	if err != nil {
    		logger.Error(err, "Error listing Nodes")
    		return
    	}
    	c.topologyCache.SetNodes(logger, nodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
        inner class DefaultConfigurationCacheBuild(
            override val state: BuildState,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    		cpu       *resource.Quantity
    	}
    
    	testCases := []struct {
    		name                 string
    		nodes                []nodeInfo
    		topologyCacheEnabled bool
    		endpointZoneInfo     map[string]topologycache.EndpointZoneInfo
    		expectedQueueLen     int
    	}{{
    		name:                 "empty",
    		nodes:                []nodeInfo{},
    		topologyCacheEnabled: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.h

    // Converts an MLIR module to TensorFlow graph and FunctionLibraryDefinition.
    // The "main" function of the module is stored in the graph and the rest of
    // functions are stored in the library. Control ret nodes are stored separately
    // in `control_ret_nodes`.
    Status ConvertMlirToGraph(mlir::ModuleOp module,
                              const GraphExportConfig& configs,
                              std::unique_ptr<Graph>* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.h

    // Converts an MLIR module to TensorFlow graph and FunctionLibraryDefinition.
    // The "main" function of the module is stored in the graph and the rest of
    // functions are stored in the library. Control ret nodes are stored separately
    // in `control_ret_nodes`.
    Status ConvertMlirToGraph(mlir::ModuleOp module,
                              const GraphExportConfig& configs,
                              std::unique_ptr<Graph>* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

         *
         * In general, this method should be avoided. The internal engine should not need to know the name of a node and
         * should instead identify nodes based on their integer node ID. This method should only be used for
         * diagnostics/reporting and for implementing existing public API methods that require this field.
         */
        String getName();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                            for (ComponentState version : versions) {
                                List<NodeState> nodes = version.getNodes();
                                for (NodeState nodeState : nodes) {
                                    // Collect nodes as implicit capability providers if different than current node, selected and not having explicit capabilities
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                }
            }
        }
    
        /**
         * Mark all configurations corresponding to visited project variant nodes as observed.
         */
        public void complete(ConfigurationInternal.InternalState requestedState) {
            for (ResolvedProjectConfiguration projectResult : resolvedProjectConfigurations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/kube/kclient/client_test.go

    		namespaces,
    		meshWatcher,
    		test.NewStop(t),
    	)
    	nodes := kclient.NewFiltered[*corev1.Node](c, kubetypes.Filter{
    		ObjectFilter: discoveryNamespacesFilter,
    	})
    	nodes.AddEventHandler(clienttest.TrackerHandler(tracker))
    	c.RunAndWait(test.NewStop(t))
    
    	tester := clienttest.Wrap(t, nodes)
    	obj1 := &corev1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: "1"},
    	}
    	tester.Create(obj1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      Log-Output ("kubelet kubeconfig from metadata (non-bootstrap):`n" +
                  "$(Get-Content -Raw ${env:KUBECONFIG})")
    }
    
    # Creates the kubelet kubeconfig at $env:KUBECONFIG for nodes that use an
    # authentication plugin, or at $env:BOOTSTRAP_KUBECONFIG for nodes that do not.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   KUBERNETES_MASTER_NAME: the apiserver IP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top