Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for _get_node (0.25 sec)

  1. pkg/kubelet/server/stats/summary_test.go

    		"/pods":    {cs: getContainerStats(), ns: getNetworkStats()},
    	}
    
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    	mockStatsProvider := statstest.NewMockProvider(mockCtrl)
    
    	mockStatsProvider.EXPECT().GetNode().Return(node, nil)
    	mockStatsProvider.EXPECT().GetNodeConfig().Return(nodeConfig)
    	mockStatsProvider.EXPECT().GetPodCgroupRoot().Return(cgroupRoot)
    	mockStatsProvider.EXPECT().ListPodStats(ctx).Return(podStats, nil).AnyTimes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

         */
        Optional<MetadataSnapshot> getSnapshot(VfsRelativePath relativePath, CaseSensitivity caseSensitivity);
    
        Optional<FileSystemNode> getNode(VfsRelativePath relativePath, CaseSensitivity caseSensitivity);
    
        /**
         * Stores information to the virtual file system that we have learned about.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

            Collection<NodeState> implicitCapabilityProviders = candidate.getImplicitCapabilityProviders();
            nodes.addAll(implicitCapabilityProviders);
            NodeState node = candidate.getNode();
            if (nodes.add(node) && nodes.size() > 1) {
                // The registered nodes may contain nodes which are no longer selected.
                // We don't remove them from the list in the first place because it proved to be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/kubelet/server/stats/handler.go

    	//
    	// GetPodByName returns the spec of the pod with the name in the specified
    	// namespace.
    	GetPodByName(namespace, name string) (*v1.Pod, bool)
    	// GetNode returns the spec of the local node.
    	GetNode() (*v1.Node, error)
    	// GetNodeConfig returns the configuration of the local node.
    	GetNodeConfig() cm.NodeConfig
    	// ListVolumesForPod returns the stats of the volume used by the pod with
    	// the podUID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelBinding.java

         */
        public BindingPredicate getPredicate() {
            return predicate;
        }
    
        public boolean isBound() {
            return boundTo != null;
        }
    
        public ModelNodeInternal getNode() {
            if (boundTo == null) {
                throw new IllegalStateException("Target node has not been bound.");
            }
            return boundTo;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Find the _Retval node and the loop cond node.
      Node* ret_node = nullptr;
      for (Node* n : g->nodes()) {
        if (n->type_string() == "_Retval") {
          if (ret_node) {
            return errors::Internal("Multiple return node for loop cond function ",
                                    loop_cond_func->name(), ": ",
                                    ret_node->DebugString(), " and ",
                                    n->DebugString());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/ResolveMutationsNode.java

            this.node = node;
            this.nodeValidator = nodeValidator;
            this.buildOperationRunner = buildOperationRunner;
            this.accessHierarchies = accessHierarchies;
        }
    
        public Node getNode() {
            return node;
        }
    
        @Override
        public String toString() {
            return "Resolve mutations for " + node;
        }
    
        @Nullable
        @Override
        public Throwable getNodeFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

            }
    
            actualIds == expectedIds
        }
    
        CapabilitiesConflictHandler.Candidate candidate(CapabilityInternal cap, ComponentState co) {
            Mock(CapabilitiesConflictHandler.Candidate) {
                getNode() >> node(co)
                getCapability() >> cap
                getImplicitCapabilityProviders() >> []
            }
        }
    
        ComponentState component(String group="group", String name="name", String version="1.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/configdump.go

    	const (
    		istioVersionKey  = "ISTIO_VERSION"
    		istioProxyShaKey = "ISTIO_PROXY_SHA"
    	)
    
    	md := bootstrapDump.GetBootstrap().GetNode().GetMetadata().GetFields()
    
    	if versionPB, ok := md[istioVersionKey]; ok {
    		version = versionPB.GetStringValue()
    	}
    	if shaPB, ok := md[istioProxyShaKey]; ok {
    		sha = shaPB.GetStringValue()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

            UnboundRuleInput.Builder builder = UnboundRuleInput.type(reference.getType());
            ModelPath path;
            if (binding.isBound()) {
                builder.bound();
                path = binding.getNode().getPath();
            } else {
                path = reference.getPath();
                if (path != null) {
                    builder.suggestions(CollectionUtils.stringize(suggestionsProvider.transform(path)));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top