Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for Forked (0.56 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			if err != nil {
    				return statusError(logger, err)
    			}
    			state.claims[index] = claim
    		}
    	}
    	// If we get here, we know that reserving the claim for
    	// the pod worked and we can proceed with binding it.
    	return nil
    }
    
    // bindClaim gets called by PreBind for claim which is not reserved for the pod yet.
    // It might not even be allocated. bindClaim then ensures that the allocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/runtime/mgcpacer.go

    		// assists tapering off. Don't bother running a worker
    		// now because it'll just return immediately.
    		return nil, now
    	}
    
    	// Grab a worker before we commit to running below.
    	node := (*gcBgMarkWorkerNode)(gcBgMarkWorkerPool.pop())
    	if node == nil {
    		// There is at least one worker per P, so normally there are
    		// enough workers to run on all Ps, if necessary. However, once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func (b PSAPI_WORKING_SET_EX_BLOCK) Node() uint64 {
    	return b.intField(16, 6)
    }
    
    // Locked returns the locked status of this page.
    // If this bit is 1, the virtual page is locked in physical memory.
    func (b PSAPI_WORKING_SET_EX_BLOCK) Locked() bool {
    	return (b & (1 << 22)) == 1
    }
    
    // LargePage returns the large page status of this page.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failureDescriptionContains("Reason: This property isn't marked as optional and no value has been configured.")
        }
    
        def "injection by name does not fail validation if service is not found but property marked as @Optional"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    // in allArenas.
    //
    // sysAlloc returns a memory region in the Reserved state. This region must
    // be transitioned to Prepared and then Ready before use.
    //
    // h must be locked.
    func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, register bool) (v unsafe.Pointer, size uintptr) {
    	assertLockHeld(&h.lock)
    
    	n = alignUp(n, heapArenaBytes)
    
    	if hintList == &h.arenaHints {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		finishCreate = fn
    		defer func() {
    			finishCreate(ctx, false)
    		}()
    	}
    
    	if err := rest.BeforeCreate(e.CreateStrategy, ctx, obj); err != nil {
    		return nil, err
    	}
    	// at this point we have a fully formed object.  It is time to call the validators that the apiserver
    	// handling chain wants to enforce.
    	if createValidation != nil {
    		if err := createValidation(ctx, obj.DeepCopyObject()); err != nil {
    			return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    		                          </Rule>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		{ // Using ExpiredObjectAllVersions element with an object locked bucket
    			inputConfig: `<LifecycleConfiguration>
                                            <Rule>
                                              <ID>ExpiredObjectAllVersions with object locking</ID>
    		                          <Filter>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    			res[cred.ParentUser] = ParentUserInfo{
    				subClaimValue: subClaimValue,
    				roleArns:      set.CreateStringSet(roleArn),
    			}
    		}
    	}
    
    	return res
    }
    
    // Assumes store is locked by caller. If users is empty, returns all user mappings.
    func (store *IAMStoreSys) listUserPolicyMappings(cache *iamCache, users []string,
    	userPredicate func(string) bool,
    ) []madmin.UserPolicyEntities {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    New warnings and errors may appear in any tools, extensions, or plugins that perform deep reflection into JDK internals with the worker API.
    
    These errors can be resolved by updating the violating code or dependency.
    Updates may include:
    
    - code-quality tools
    - annotation processors
    - any Gradle plugins which use the worker API
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	var str []rune
    	var strflags Flags
    	start := 0
    	out := sub[:0]
    	for i := 0; i <= len(sub); i++ {
    		// Invariant: the Regexps that were in sub[0:start] have been
    		// used or marked for reuse, and the slice space has been reused
    		// for out (len(out) <= start).
    		//
    		// Invariant: sub[start:i] consists of regexps that all begin
    		// with str as modified by strflags.
    		var istr []rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top