Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 355 for Hare (0.07 sec)

  1. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * turn, and does not create any threads of its own.
       *
       * <p>After execution begins on a thread from the {@code delegate} {@link Executor}, tasks are
       * polled and executed from a task queue until there are no more tasks. The thread will not be
       * released until there are no more tasks to run.
       *
       * <p>If a task is submitted while a thread is executing tasks from the task queue, the thread
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// But they are used for generating more efficient code on certain modern machines, with run-time CPU feature detection.
    	// On ARM64, these are used when the LSE hardware feature is avaliable (either known at compile time or detected at runtime). If LSE is not avaliable,
    	// then the basic atomic oprations are used instead.
    	// These are not currently used on any other platform.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    // truncated when stored in packages and binaries, as the full length is not
    // needed and is a bit unwieldy. The precise form is
    //
    //	actionID/[.../]contentID
    //
    // where the actionID and contentID are prepared by buildid.HashToString below.
    // and are found by looking for the first or last slash.
    // Usually the buildID is simply actionID/contentID, but see below for an
    // exception.
    //
    // The build ID serves two primary purposes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// Include those too, so that if any new one appears, we'll invalidate the cache entry.
    	// This will lead to spurious invalidation of version list results,
    	// but tags of this form being created should be fairly rare
    	// (and invalidate pseudo-version results anyway).
    	c := semver.Canonical(tag)
    	return c != "" && strings.HasPrefix(tag, c) && !module.IsPseudoVersion(tag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        }
    
        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the expected set of projects is configured, the expected models are queried
         * and the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StoreDetails) Closure closure) {
            def details = new StoreDetails()
            closure.delegate = details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * exercise null handling fail on those subcollections.
       */
      public abstract static class NullsBefore implements Comparator<@Nullable String>, Serializable {
        /*
         * We don't serialize this class in GWT, so we don't care about whether GWT will serialize this
         * field.
         */
        @GwtTransient private final String justAfterNull;
    
        protected NullsBefore(String justAfterNull) {
          if (justAfterNull == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func.go

    	ABISelf        *abi.ABIConfig // ABI for function being compiled
    	ABIDefault     *abi.ABIConfig // ABI for rtcall and other no-parsed-signature/pragma functions.
    
    	scheduled   bool  // Values in Blocks are in final order
    	laidout     bool  // Blocks are ordered
    	NoSplit     bool  // true if function is marked as nosplit.  Used by schedule check pass.
    	dumpFileSeq uint8 // the sequence numbers of dump file. (%s_%02d__%s.dump", funcname, dumpFileSeq, phaseName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            }
        }
    
        def "problems in tasks that are not marked incompatible are treated as failures when incompatible tasks are also scheduled"() {
            given:
            addTasksWithProblems()
    
            when:
            configurationCacheFails("declared", "notDeclared")
    
            then:
            result.assertTasksExecuted(":declared", ":notDeclared")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Type parameters, return types and other annotations are all contained in KtUserType,
                // and are never considered used as expressions
                is KtUserType ->
                    false
    
                // Only top-level named declarations have KtFile/KtScript Parents, and are never considered used
                is KtFile ->
                    false
                is KtScript ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

        // US region agents have name "EC2-XXX"
        doesNotContain("teamcity.agent.name", "EC2")
    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top