Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,674 for noodle (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        cloud.google.com/gke-os-distribution: cos
        failure-domain.beta.kubernetes.io/region: us-central1
        failure-domain.beta.kubernetes.io/zone: us-central1-b
        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        @Nullable
        protected Node.ExecutionState getInitialState() {
            return null;
        }
    
        /**
         * Called when the graph containing this node is about to start execution.
         *
         * @param monitor An action that should be called when this node is ready to execute, when the dependencies for this node are executed outside
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/node.go

    }
    
    func extractNode(node *apicorev1.Node, fieldManager string, subresource string) (*NodeApplyConfiguration, error) {
    	b := &NodeApplyConfiguration{}
    	err := managedfields.ExtractInto(node, internal.Parser().Type("io.k8s.api.core.v1.Node"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(node.Name)
    
    	b.WithKind("Node")
    	b.WithAPIVersion("v1")
    	return b, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  5. src/text/template/parse/node.go

    // The periods are dropped from each ident.
    type ChainNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Node  Node
    	Field []string // The identifiers in lexical order.
    }
    
    func (t *Tree) newChain(pos Pos, node Node) *ChainNode {
    	return &ChainNode{tr: t, NodeType: NodeChain, Pos: pos, Node: node}
    }
    
    // Add adds the named field (which should start with a period) to the end of the chain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/node.go

    	}
    
    	// Fetches the cluster configuration
    	// NB in case of control-plane node, we are reading all the info for the node; in case of NOT control-plane node
    	//    (worker node), we are not reading local API address and the CRI socket from the node object
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, nil, "upgrade", !isControlPlaneNode, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

    focus=${FOCUS:-""}
    skip=${SKIP-"\[Flaky\]|\[Slow\]|\[Serial\]"}
    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/node/minio-node.json

        "time_options": [
          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "MinIO Node Dashboard",
      "uid": "TgmJnnqn2k",
      "version": 1,
      "weekStart": ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. docs/features/https.md

        .build();
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/template.go

    // limitations under the License.
    
    package inject
    
    import (
    	"encoding/json"
    	"fmt"
    	"os"
    	"path"
    	"strconv"
    	"strings"
    	"text/template"
    
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/durationpb"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top