Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for scope_ (0.17 sec)

  1. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    import static java.util.concurrent.TimeUnit.SECONDS
    import static org.gradle.api.internal.cache.CacheConfigurationsInternal.DEFAULT_MAX_AGE_IN_DAYS_FOR_CREATED_CACHE_ENTRIES
    import static org.gradle.internal.service.scopes.DefaultGradleUserHomeScopeServiceRegistry.REUSE_USER_HOME_SERVICES
    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    import static org.hamcrest.Matchers.containsString
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    		*out = make([]ResourceQuotaScope, len(*in))
    		copy(*out, *in)
    	}
    	if in.ScopeSelector != nil {
    		in, out := &in.ScopeSelector, &out.ScopeSelector
    		*out = new(ScopeSelector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	if in.Hard != nil {
    		in, out := &in.Hard, &out.Hard
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Scopes != nil {
    		in, out := &in.Scopes, &out.Scopes
    		*out = make([]ResourceQuotaScope, len(*in))
    		copy(*out, *in)
    	}
    	if in.ScopeSelector != nil {
    		in, out := &in.ScopeSelector, &out.ScopeSelector
    		*out = new(ScopeSelector)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.null_type == 109", "self.type == 110",
    
    				// if a property name is 'self', it can be field selected as 'self.self' (but not as just 'self' because we bind that
    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    				// macro identifiers.
    				"self.getDate == 202",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func SetupDiOpenDevRegKey(deviceInfoSet DevInfo, deviceInfoData *DevInfoData, Scope DICS_FLAG, HwProfile uint32, KeyType DIREG, samDesired uint32) (key Handle, err error) {
    	r0, _, e1 := syscall.Syscall6(procSetupDiOpenDevRegKey.Addr(), 6, uintptr(deviceInfoSet), uintptr(unsafe.Pointer(deviceInfoData)), uintptr(Scope), uintptr(HwProfile), uintptr(KeyType), uintptr(samDesired))
    	key = Handle(r0)
    	if key == InvalidHandle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/reflect/value.go

    		if nout == 0 {
    			stackArgs = framePool.Get().(unsafe.Pointer)
    		} else {
    			// Can't use pool if the function has return values.
    			// We will leak pointer to args in ret, so its lifetime is not scoped.
    			stackArgs = unsafe_New(frametype)
    		}
    	}
    	frameSize := frametype.Size()
    
    	if debugReflectCall {
    		println("reflect.call", stringFor(&t.Type))
    		abid.dump()
    	}
    
    	// Copy inputs into args.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    		/* L field for dcbf: */
    		/* 0 = invalidates the block containing EA in all processors. */
    		/* 1 = same as 0, but with limited scope (i.e. block in the current processor will not be reused soon). */
    		/* 3 = same as 1, but with even more limited scope (i.e. block in the current processor primary cache will not be reused soon). */
    		if p.To.Type == obj.TYPE_NONE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top