Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 196 for spill (0.56 sec)

  1. cmd/iam.go

    	}
    
    	return sys.store.UpdateUserSecretKey(ctx, accessKey, secretKey)
    }
    
    // purgeExpiredCredentialsForExternalSSO - validates if local credentials are still valid
    // by checking remote IDP if the relevant users are still active and present.
    func (sys *IAMSys) purgeExpiredCredentialsForExternalSSO(ctx context.Context) {
    	parentUsersMap := sys.store.GetAllParentUsers()
    	var expiredUsers []string
    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. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        step4Waiter.awaitReturned();
        assertThat(getFinalValue(step4)).isEqualTo("value 4");
    
        // Step 4's closeable is now closed.
        assertClosed(closeable4);
        // Step 3 still never ran, so its closeable should still be open.
        assertStillOpen(closeable3);
      }
    
      public void testTransform() throws Exception {
        ClosingFuture<String> closingFuture =
            ClosingFuture.from(immediateFuture("value"))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	dswp.podManager.(mutablePodManager).RemovePod(pod)
    
    	dswp.findAndRemoveDeletedPods()
    
    	if !dswp.pods.processedPods[podName] {
    		t.Fatalf("Pod should not been removed from desired state of world since pod state still thinks it exists")
    	}
    
    	fakePodState.removed = map[kubetypes.UID]struct{}{pod.UID: {}}
    
    	// the pod state is marked as removed, so here findAndRemoveDeletedPods() will remove the pod and volumes it is mounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen, the span is swept and ready to use
    	// if sweepgen == h->sweepgen + 1, the span was cached before sweep began and is still cached, and needs sweeping
    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    	divMul                uint32        // for divide by elemsize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    	r, _, _, mask_rlw := DecodePPC64RotateMask(rlw)
    
    	// Rotate the input mask, combine with the rlwnm mask, and test if it is still a valid rlwinm mask.
    	r_mask := bits.RotateLeft32(mask, int(r))
    
    	mask_out := (mask_rlw & uint64(r_mask))
    
    	// Verify the result is still a valid bitmask of <= 32 bits.
    	if !isPPC64WordRotateMask(int64(mask_out)) {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	return ctxt.Import(".", dir, mode)
    }
    
    // NoGoError is the error used by [Import] to describe a directory
    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    		// - xl.meta for inlined objects has already read the data
    		//   into memory, any mutation on xl.meta subsequently is
    		//   inconsequential to the overall read operation.
    		// - xl.meta metadata is still verified for quorum under lock()
    		//   however writing the response doesn't need to serialize
    		//   concurrent writers
    		unlockOnDefer = true
    		nsUnlocker = func() { lock.RUnlock(lkctx) }
    	}
    
    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. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Please use the <<directory_layout#dir:gradle_user_home:configure_cache_cleanup,cache cleanup DSL>> instead to disable or modify the cleanup configuration.
    
    Since the `org.gradle.cache.cleanup` property may still be needed for older versions of Gradle, this property may still be present and no deprecation warnings will be printed as long as it is also configured via the DSL.
    The DSL value will always take preference over the `org.gradle.cache.cleanup` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    
    	// Jobs that need to be updated
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    	orphanQueue workqueue.TypedRateLimitingInterface[string]
    
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	clock clock.WithTicker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		// If this happens, it means that we may have attempted to release part
    		// of a physical page, but the likely effect of that is that it released
    		// the whole physical page, some of which may have still been in-use.
    		// This could lead to memory corruption. Throw.
    		throw("released less than one physical page of memory")
    	}
    	return
    }
    
    // Background scavenger.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top