Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for regular (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * but ATM we don't have a way to properly handle
         * [FirThisReference]s through the existing filters.
         *
         * We need a better way to decide shortening strategy
         * for labeled and regular `this` expressions (KT-63555).
         */
        private fun thisLabelShortenStrategy(thisReference: FirThisReference): ShortenStrategy {
            val referencedSymbol = thisReference.boundSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeToken.java

        }
        if (runtimeType instanceof GenericArrayType) {
          return of(supertype).isSupertypeOfArray((GenericArrayType) runtimeType);
        }
        // Proceed to regular Type subtype check
        if (supertype instanceof Class) {
          return this.someRawTypeIsSubclassOf((Class<?>) supertype);
        } else if (supertype instanceof ParameterizedType) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top