Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,731 for Nodes (0.18 sec)

  1. pkg/client/tests/listwatch_test.go

    			desc: "node without rv",
    			location: buildLocation(
    				"/api/v1/nodes",
    				buildQueryValues(url.Values{"watch": []string{"true"}})),
    			rv:            "",
    			resource:      "nodes",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: parseSelectorOrDie(""),
    		},
    		{
    			desc: "node with rv",
    			location: buildLocation(
    				"/api/v1/nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller.go

    }
    
    // gcOrphaned deletes pods that are bound to nodes that don't exist.
    func (gcc *PodGCController) gcOrphaned(ctx context.Context, pods []*v1.Pod, nodes []*v1.Node) {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("GC'ing orphaned")
    	existingNodeNames := sets.NewString()
    	for _, node := range nodes {
    		existingNodeNames.Insert(node.Name)
    	}
    	// Add newly found unknown nodes to quarantine
    	for _, pod := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPredicate.java

        }
    
        /**
         * Returns the parent path of the nodes to select, or null if parent is not relevant.
         *
         * <p>A node will be selected if its parent's path equals the specified path.
         */
        @Nullable
        public ModelPath getParent() {
            return null;
        }
    
        /**
         * Return the path of the scope of the nodes to select, or null if ancestor is not relevant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/kubelet/server/auth.go

    // More specific verb/resource is set for the following request patterns:
    //
    //	/stats/*   => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=stats
    //	/metrics/* => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=metrics
    //	/logs/*    => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/canUseAstTransformWrittenInGroovy/src/main/groovy/GroovyMagicFieldTransform.groovy

    import java.lang.reflect.Modifier
    
    @GroovyASTTransformation
    class GroovyMagicFieldTransform implements ASTTransformation {
        void visit(ASTNode[] nodes, SourceUnit source) {
            def clazz = (ClassNode) nodes[1]
            clazz.addField("magicField", Modifier.PUBLIC, ClassHelper.STRING_TYPE, new ConstantExpression("magicValue"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 683 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1/generated.proto

      // +optional
      optional Overhead overhead = 3;
    
      // scheduling holds the scheduling constraints to ensure that pods running
      // with this RuntimeClass are scheduled to nodes that support it.
      // If scheduling is nil, this RuntimeClass is assumed to be supported by all
      // nodes.
      // +optional
      optional Scheduling scheduling = 4;
    }
    
    // RuntimeClassList is a list of RuntimeClass objects.
    message RuntimeClassList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1/types_swagger_doc_generated.go

    	"scheduling": "scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.",
    }
    
    func (RuntimeClass) SwaggerDoc() map[string]string {
    	return map_RuntimeClass
    }
    
    var map_RuntimeClassList = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/walk.go

    // w for each of the non-nil children of node, followed by a call of
    // w.Visit(nil).
    //
    // Some nodes may be shared among multiple parent nodes (e.g., types in
    // field lists such as type T in "a, b, c T"). Such shared nodes are
    // walked multiple times.
    // TODO(gri) Revisit this design. It may make sense to walk those nodes
    // only once. A place where this matters is types2.TestResolveIdents.
    func Walk(root Node, v Visitor) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:55:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // +optional
      optional Overhead overhead = 3;
    
      // scheduling holds the scheduling constraints to ensure that pods running
      // with this RuntimeClass are scheduled to nodes that support it.
      // If scheduling is nil, this RuntimeClass is assumed to be supported by all
      // nodes.
      // +optional
      optional Scheduling scheduling = 4;
    }
    
    // RuntimeClassList is a list of RuntimeClass objects.
    message RuntimeClassList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.h

    XlaAutoClusteringSummary GetXlaAutoClusteringSummary(const Graph& graph);
    
    // Returns the set of nodes that have a path to or from nodes that may have ref
    // variables as input or output.
    //
    // We assume each node has a trivial path to itself so the returned set includes
    // all of the nodes that have ref variables as input or output.
    absl::StatusOr<absl::flat_hash_set<Node*>> GetNodesRelatedToRefVariables(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top