Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for Forever (0.23 sec)

  1. src/runtime/mgcpacer.go

    	// utilization will be lower than the goal. But this is moot point
    	// because the idle mark workers already soak up idle CPU resources.
    	// These two values are still kept separate however because they are
    	// distinct conceptually, and in previous iterations of the pacer the
    	// distinction was more important.
    	gcBackgroundUtilization = 0.25
    
    	// gcCreditSlack is the amount of scan work credit that can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
       * toKey}. However, this method doesn't throw an exception in that situation, but instead keeps
       * the original {@code toKey}.
       */
      @Override
      public ImmutableSortedMap<K, V> headMap(K toKey) {
        return headMap(toKey, false);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    NOTE: Not all test frameworks play well with filtering. Some advanced, synthetic tests may not be fully compatible.
    However, the vast majority of tests and use cases work perfectly well with Gradle's filtering mechanism.
    
    The following two sections look at the specific cases of simple class/method names and fully-qualified names.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
       * toKey}. However, this method doesn't throw an exception in that situation, but instead keeps
       * the original {@code toKey}.
       */
      @Override
      public ImmutableSortedMap<K, V> headMap(K toKey) {
        return headMap(toKey, false);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            fails ':a:checkDebug'
    
            then:
            failure.assertHasCause("""The consumer was configured to find attribute 'buildType' with value 'debug', attribute 'flavor' with value 'free'. However we cannot choose between the following variants of project :b:
      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability test:b:unspecified declares attribute 'flavor' with value 'free':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Configuration time will still be spent the first time you run a particular set of tasks.
    However, you should see build performance improvement immediately because <<#config_cache:intro:performance_improvements,tasks will run in parallel>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// the c.watchCache.RLock held otherwise we are at risk of a deadlock
    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    package modget
    
    // The arguments to 'go get' are patterns with optional version queries, with
    // the version queries defaulting to "upgrade".
    //
    // The patterns are normally interpreted as package patterns. However, if a
    // pattern cannot match a package, it is instead interpreted as a *module*
    // pattern. For version queries such as "upgrade" and "patch" that depend on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            GeneratedClassImpl generatedClass = generatedClasses.getIfPresent(type);
            if (generatedClass == null) {
                // It is possible that multiple threads will execute this branch concurrently, when the type is missing. However, the contract for `get()` below will ensure that
                // only one thread will actually generate the implementation class
                generatedClass = generatedClasses.get(type, generator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top