Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,575 for Reused (0.09 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiBootPathConfigurer.java

         *
         * This hackery is to prevent Jansi from creating a shared lib in a tmp dir which is deleted when
         * the Java process finishes. To avoid performance impacts caused by Jansi's default behavior the
         * library is proactively extracted into a known directory and reused by subsequent invocations.
         *
         * @param storageDir where to store the Jansi library
         */
        public void configure(File storageDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter="+it)
            }
        }
    
        def "can recompile many times in a row with a reused compiler daemon"() {
            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter=0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                        private final String projectName = getProject().getName();
    
                        @TaskAction
                        void printValue() {
                            // When ClassLoaders are reused
                            // the 1st run should print `<project name>.value = 1`
                            // the 2nd run should print `<project name>.value = 2`
                            // and so on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

         */
        boolean hasMutableState();
    
        /**
         * Creates a new container for a value that is calculated from the mutable state of this container, and then reused by multiple threads.
         */
        <S> CalculatedModelValue<S> newCalculatedValue(@Nullable S initialValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_test.go

    	"strings"
    	"testing"
    )
    
    // Test_ServiceSpecRemovedFieldProtobufNumberReservation tests that the reserved protobuf field numbers
    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_ServiceSpecRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(ServiceSpec{}).Type()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
            outputContains("Configuration cache entry reused with 4 problems.")
        }
    
        def "configuration time problems are reported and fail the build by default only when configuration is executed invalidating the cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileContentCacheFactory.java

     */
    public interface FileContentCacheFactory {
        /**
         * Creates or locates a cache. The contents of the cache are reused across builds, where possible.
         *
         * @param name An identifier for the cache, used to identify the cache across builds. All instances created using the same identifier will share the same backing store.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapabilities.java

    /**
     * A deeply immutable implementation of {@link CapabilitiesMetadata}.
     *
     * This type will ensure that all contents are immutable upon construction,
     * in order to allow instances of this type to be safely reused whenever possible
     * to avoid unnecessary memory allocations.
     *
     * Note that while this class is not itself {@code final}, all fields are private, so
     * subclassing should not break the immutability contract.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.List;
    
    /**
     * A specialized {@link ComponentGraphResolveState} for local components (ie project dependencies).
     *
     * <p>Instances of this type are cached and reused for multiple graph resolutions, possibly in parallel. This means that the implementation must be thread-safe.
     */
    @ThreadSafe
    public interface LocalComponentGraphResolveState extends ComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top