Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for regular (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Most recently configured resources on the running container
    	currentContainerResources *containerResources
    }
    
    // podActions keeps information what to do for a pod.
    type podActions struct {
    	// Stop all running (regular, init and ephemeral) containers and the sandbox for the pod.
    	KillPod bool
    	// Whether need to create a new sandbox. If needed to kill pod and create
    	// a new pod sandbox, all init containers need to be purged (i.e., removed).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    		// IPv4 in class B form
    		"192.168.12345",
    		// IPv4 in class B form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.0.1",
    		// IPv4 in class A form
    		"192.1234567",
    		// IPv4 in class A form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.1",
    		// IPv4 field has value >255
    		"192.168.300.1",
    		// IPv4 with too many fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. cmd/iam.go

    	updatedAt, addedOrRemoved, effectivePolicies, err = sys.store.PolicyDBUpdate(ctx, userOrGroup, isGroup,
    		regUser, r.Policies, isAttach)
    	if err != nil {
    		return
    	}
    
    	// Notify all other MinIO peers to reload policy
    	if !sys.HasWatcher() {
    		for _, nerr := range globalNotificationSys.LoadPolicyMapping(ctx, userOrGroup, regUser, isGroup) {
    			if nerr.Err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - `version`, the version of the artifact to trust
    - `file`, the name of the artifact _file_ to trust
    - `regex`, a boolean saying if the `group`, `name`, `version` and `file` attributes need to be interpreted as regular expressions (defaults to `false`)
    
    --
    You should be careful when trusting a key globally.
    
    Try to limit it to the appropriate groups or artifacts:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            Type propertyType = Type.getType(propertyClass);
            Label calledOutsideOfConstructor = new Label();
    
            Method setter = weakSetter.getMethod();
    
            // the regular typed setter
            String methodDescriptor = Type.getMethodDescriptor(Type.VOID_TYPE, propertyType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    		Gosched()
    	}
    }
    
    // gcBgMarkStartWorkers prepares background mark worker goroutines. These
    // goroutines will not run until the mark phase, but they must be started while
    // the work is not stopped and from a regular G stack. The caller must hold
    // worldsema.
    func gcBgMarkStartWorkers() {
    	// Background marking is performed by per-P G's. Ensure that each P has
    	// a background GC G.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    			) {
    				missingBlocks++
    			}
    		}
    
    		// if missing metadata can be reconstructed, attempt to reconstruct.
    		// additionally do not heal delete markers inline, let them be
    		// healed upon regular heal process.
    		if missingBlocks > 0 && missingBlocks < fi.Erasure.DataBlocks {
    			globalMRFState.addPartialOp(partialOperation{
    				bucket:    fi.Volume,
    				object:    fi.Name,
    				versionID: fi.VersionID,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	}
    
    	// Found an actual function.
    	// Derive frame pointer.
    	if frame.fp == 0 {
    		// Jump over system stack transitions. If we're on g0 and there's a user
    		// goroutine, try to jump. Otherwise this is a regular call.
    		// We also defensively check that this won't switch M's on us,
    		// which could happen at critical points in the scheduler.
    		// This ensures gp.m doesn't change from a stack jump.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    type objAPITestType func(obj ObjectLayer, instanceType string, bucketName string,
    	apiRouter http.Handler, credentials auth.Credentials, t *testing.T)
    
    // Regular object test type.
    type objTestType func(obj ObjectLayer, instanceType string, t TestErrHandler)
    
    // Special test type for test with directories
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. src/runtime/map.go

    // if use was dense, then we'd have already triggered regular map growth.
    func tooManyOverflowBuckets(noverflow uint16, B uint8) bool {
    	// If the threshold is too low, we do extraneous work.
    	// If the threshold is too high, maps that grow and shrink can hold on to lots of unused memory.
    	// "too many" means (approximately) as many overflow buckets as regular buckets.
    	// See incrnoverflow for more details.
    	if B > 15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top