Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 501 for regUsed (0.1 sec)

  1. guava/src/com/google/common/collect/ImmutableMapEntry.java

     * implementations.
     *
     * <p>This base implementation has no key or value pointers, so instances of ImmutableMapEntry (but
     * not its subclasses) can be reused when copied from one ImmutableMap to another.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible // unnecessary
    @ElementTypesAreNonnullByDefault
    class ImmutableMapEntry<K, V> extends ImmutableEntry<K, V> {
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleCachingIntegrationTest.groovy

            """
        }
    
        boolean getNewRulesExtracted() {
            def match = output =~ /.*### extracted new rules: (true|false).*/
            match[0][1] == "true"
        }
    
        def "rules extracted from core plugins are reused across builds"() {
            given:
            buildFile << '''
                apply plugin: 'cpp'
            '''
    
            when:
            run()
    
            then:
            newRulesExtracted
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             */
            boolean isActionable();
    
            /**
             * If task was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the task executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

        }
    
        def "idle daemon is reused in preference to starting a new daemon"() {
            given:
            executer.run()
            daemons.daemon.assertIdle()
    
            when:
            5.times {
                executer.run()
            }
    
            then:
            daemons.daemons.size() == 1
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17345")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. src/runtime/HACKING.md

      persistentalloced objects (hence the name).
    
    * fixalloc is a SLAB-style allocator that allocates objects of a fixed
      size. fixalloced objects can be freed, but this memory can only be
      reused by the same fixalloc pool, so it can only be reused for
      objects of the same type.
    
    In general, types that are allocated using any of these should be
    marked as not in heap by embedding `runtime/internal/sys.NotInHeap`.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/KeepAliveMode.java

     * limitations under the License.
     */
    
    package org.gradle.language.scala.tasks;
    
    import org.gradle.api.Incubating;
    
    /**
     * Describes whether a Scala compiler daemon should be reused.
     *
     * @since 7.6
     */
    @Incubating
    public enum KeepAliveMode {
        /**
         * The compiler is kept alive for a session.
         */
        SESSION,
    
        /**
         * The compiler is kept alive across builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 979 bytes
    - Viewed (0)
  7. src/os/exec_unix.go

    	// TODO(go.dev/issue/67642): When there are concurrent Wait calls, one
    	// may wait on the wrong process if the PID is reused after the
    	// completes its wait.
    	//
    	// Checking for statusDone here would not be a complete fix, as the PID
    	// could still be waited on and reused prior to blockUntilWaitable.
    	switch p.pidStatus() {
    	case statusReleased:
    		return nil, syscall.EINVAL
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/doc.go

    limitations under the License.
    */
    
    // package options is the public flags and options used by a generic api
    // server. It takes a minimal set of dependencies and does not reference
    // implementations, in order to ensure it may be reused by multiple components
    // (such as CLI commands that wish to generate or validate config).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 01 20:18:33 UTC 2017
    - 928 bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             * </ul>
             */
            @Nullable
            String getSkipMessage();
    
            /**
             * If work was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the work executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. internal/grid/grid.go

    const (
    	// minBufferSize is the minimum buffer size.
    	// Buffers below this is not reused.
    	minBufferSize = 1 << 10
    
    	// defaultBufferSize is the default buffer allocation size.
    	defaultBufferSize = 4 << 10
    
    	// maxBufferSize is the maximum buffer size.
    	// Buffers larger than this is not reused.
    	maxBufferSize = 96 << 10
    
    	// This is the assumed size of bigger buffers and allocation size.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top