Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 496 for loadOne (0.18 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    			return
    		}
    
    		if _, dup := loading.LoadOrStore(dedupKey{m, pruning}, nil); dup {
    			// m has already been enqueued for loading. Since unpruned loading may
    			// follow cycles in the requirement graph, we need to return early
    			// to avoid making the load queue infinitely long.
    			return
    		}
    
    		loadQueue.Add(func() {
    			summary, err := loadOne(m)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/main/webapp/images/loading.gif

    loading.gif...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 22 18:08:59 UTC 2016
    - 5K bytes
    - Viewed (0)
  3. samples/helloworld/loadgen.sh

    John Howard <******@****.***> 1590784921 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 675 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LoadingCache.java

      /**
       * Returns the value associated with {@code key} in this cache, first loading that value if
       * necessary. No observable state associated with this cache is modified until loading completes.
       *
       * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
       * {@code key}, simply waits for that thread to finish and returns its loaded value. Note that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LoadingCache.java

      /**
       * Returns the value associated with {@code key} in this cache, first loading that value if
       * necessary. No observable state associated with this cache is modified until loading completes.
       *
       * <p>If another call to {@link #get} or {@link #getUnchecked} is currently loading the value for
       * {@code key}, simply waits for that thread to finish and returns its loaded value. Note that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaConfigurationCachePerformanceTest.groovy

            then:
            result.assertCurrentVersionHasNotRegressed()
    
            where:
            daemon | action
            hot    | loading
            hot    | storing
            cold   | loading
            cold   | storing
        }
    
        static String loading = "loading"
        static String storing = "storing"
        static String hot = "hot"
        static String cold = "cold"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

            }
        }
    
        /**
         * Call this when an error occurs during class loading.
         * This method only records the error but doesn't throw any exceptions.
         * The exception will be rethrown (wrapped in a ClassNotFoundException) when this thread enters or exits the class loading scope.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * Prefer returning {@code null} instead of the {@code classfileBuffer} to continue loading the original bytecode.
         * <p>
         * Throwing the exception from this method aborts the transformation but doesn't affect class loading. The caller
         * (the agent) will catch all throwables thrown by this method and forward them to {@link #transformFailed(String, Throwable)}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                        assertNoScriptCompile(rootBuildFile.stage1)
                        assertNoScriptCompile(rootBuildFile.stage2)
                    }
                    // then: no compilation nor class loading
                    compilationCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * Creates unique ids for objects created during configuration.
     * <p>
     * Usage of this factory in object factories ensures that ids are reused consistently when loading from the configuration cache.
     */
    @ThreadSafe
    @ServiceScope(Scope.BuildTree.class)
    public class ConfigurationCacheableIdFactory {
    
        private static final long USED_ASSIGNED_ID_MARKER = -1;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top