Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for noodle (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"context"
    	"math"
    	"math/rand"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/google/cel-go/cel"
    
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsfuzzer "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    			masq:     true,
    		},
    
    		// The LB rules assume that when you connect from a node to a LB IP, that
    		// something external to kube-proxy will cause the connection to be
    		// SNATted to the LB IP, so if the LoadBalancerSourceRanges include the
    		// node IP, then we add a rule allowing traffic from the LB IP as well...
    		{
    			name:     "same node to LB1, SNATted to LB1 (implicitly allowed)",
    			sourceIP: svcLBIP1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ## 0.37.0
    
    * Add support for custom route classes for advanced use cases. PR [#468](https://github.com/tiangolo/fastapi/pull/468) by [@dmontagu](https://github.com/dmontagu).
    * Allow disabling Google fonts in ReDoc. PR [#481](https://github.com/tiangolo/fastapi/pull/481) by [@b1-luettje](https://github.com/b1-luettje).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // A list of node selector requirements by node's fields.
      // +optional
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
      // podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":              "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    }
    
    // ValidateNode tests if required fields in the node are set.
    func ValidateNode(node *core.Node) field.ErrorList {
    	fldPath := field.NewPath("metadata")
    	allErrs := ValidateObjectMeta(&node.ObjectMeta, false, ValidateNodeName, fldPath)
    	allErrs = append(allErrs, ValidateNodeSpecificAnnotations(node.ObjectMeta.Annotations, fldPath.Child("annotations"))...)
    	if len(node.Spec.Taints) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    // walkReadyInOrder iterates over the tree in priority order, calling f for each node
    // with a non-empty write queue. When f returns true, this function returns true and the
    // walk halts. tmp is used as scratch space for sorting.
    //
    // f(n, openParent) takes two arguments: the node to visit, n, and a bool that is true
    // if any ancestor p of n is still open (ignoring the root node).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // UID is the metadata.UID of the referenced ConfigMap.
      // This field is forbidden in Node.Spec, and required in Node.Status.
      // +optional
      optional string uid = 3;
    
      // ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap.
      // This field is forbidden in Node.Spec, and required in Node.Status.
      // +optional
      optional string resourceVersion = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              {
                "group": "node.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1"
              },
              {
                "group": "node.k8s.io",
                "kind": "DeleteOptions",
                "version": "v1alpha1"
              },
              {
                "group": "node.k8s.io",
                "kind": "DeleteOptions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>
    	// +optional
    	ProviderID string `json:"providerID,omitempty" protobuf:"bytes,3,opt,name=providerID"`
    	// Unschedulable controls node schedulability of new pods. By default, node is schedulable.
    	// More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top