Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 424 for distinguish (0.14 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"conditions": "conditions contains information about the current status of the endpoint.",
    	"hostname":   "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            MultiProjectCachedScripts(
                cachedSettingsFile(
                    withSettings(
                        """
                        $settings
                        rootProject.name = "${projectRoot.name}" // distinguish settings files
                        include("right", "left")
                        """
                    ),
                    settings.contains("buildscript {"),
                    true
                ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    // Setup iptables rules for HOST netnamespace. Ideally this should be an idempotent function.
    // NOTE that this expects to be run from within the HOST network namespace!
    //
    // We need to do this specifically to be able to distinguish between traffic coming from different node-level processes
    // via the nodeIP
    // - kubelet (node-local healthchecks, which we do not capture)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1/generated.proto

      // conditions contains information about the current status of the endpoint.
      optional EndpointConditions conditions = 2;
    
      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pkg/apis/admission/types.go

    	Response *AdmissionResponse
    }
    
    // AdmissionRequest describes the admission.Attributes for the admission request.
    type AdmissionRequest struct {
    	// UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
    	// otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  6. pkg/api/v1/endpoints/util.go

    func mapAddressByPort(addr *v1.EndpointAddress, port v1.EndpointPort, ready bool, allAddrs map[addressKey]*v1.EndpointAddress, portToAddrReadyMap map[v1.EndpointPort]addressSet) *v1.EndpointAddress {
    	// use addressKey to distinguish between two endpoints that are identical addresses
    	// but may have come from different hosts, for attribution. For instance, Mesos
    	// assigns pods the node IP, but the pods are distinct.
    	key := addressKey{ip: addr.IP}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // conditions contains information about the current status of the endpoint.
      optional EndpointConditions conditions = 2;
    
      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    type DeploymentSpec struct {
    	// Number of desired pods. This is a pointer to distinguish between explicit
    	// zero and not specified. Defaults to 1.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	case MOV:
    		// The 16-bit and 32-bit forms of MOV Sreg, dst and MOV src, Sreg
    		// cannot be distinguished when src or dst refers to memory, because
    		// Sreg is always a 16-bit value, even when we're doing a 32-bit
    		// instruction. Because the instruction tables distinguished these two,
    		// any operand size prefix has been marked as used (to decide which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("services/proxy").RuleOrDie(),
    }
    
    // ungettableResources is the list of rules that don't allow to view (GET) them
    // this is purposefully separate list to distinguish from escalating privs
    var ungettableResources = []rbacv1.PolicyRule{
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("apps", "extensions").Resources("deployments/rollback").RuleOrDie(),
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top