Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 417 for loadOne (0.2 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLauncherSessionListenerIntegrationTest.groovy

                    @org.junit.jupiter.api.Test
                    public void myTest() { }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNodeFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * Transform step node factory that ensures that unique ids are used correctly
     * when creating new instances and/or loading from the configuration cache.
     */
    @ThreadSafe
    @ServiceScope(Scope.BuildTree.class)
    public class TransformStepNodeFactory {
    
        private final ConfigurationCacheableIdFactory idFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache-base/src/test/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTrackerTest.kt

        }
    
        @Test(expected = IllegalStateException::class)
        fun `updating state after loading throws`() {
            tracker.loadFrom(emptyEnvironmentState())
    
            tracker.systemPropertyRemoved("some.property")
        }
    
        @Test(expected = IllegalStateException::class)
        fun `loading twice throws`() {
            tracker.loadFrom(emptyEnvironmentState())
            tracker.loadFrom(emptyEnvironmentState())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/tidy.go

    to go.sum and removes any unnecessary ones.
    
    The -v flag causes tidy to print information about removed modules
    to standard error.
    
    The -e flag causes tidy to attempt to proceed despite errors
    encountered while loading packages.
    
    The -diff flag causes tidy not to modify go.mod or go.sum but
    instead print the necessary changes as a unified diff. It exits
    with a non-zero code if the diff is not empty.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/Cache.java

       *
       * <p>No observable state associated with this cache is modified until loading completes.
       *
       * @throws ExecutionException if a checked exception was thrown while loading the value
       * @throws UncheckedExecutionException if an unchecked exception was thrown while loading the
       *     value
       * @throws ExecutionError if an error was thrown while loading the value
       * @since 11.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_prune.txt

    #
    #  example.com/a -> example.com/b v1.0.0 -> example.com/q v1.1.0
    #  example.com/p -> example.com/q v1.0.0
    #
    # If we didn't load the whole graph and didn't load the dependencies of b
    # when loading p, we would end up loading q v1.0.0, rather than v1.1.0,
    # which is selected by MVS.
    
    go list -m -f '{{.Version}}' example.com/q
    stdout '^v1.1.0$'
    
    -- go.work --
    go 1.18
    
    use (
    	./a
    	./p
    )
    -- a/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 14:30:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-spi/src/integTest/groovy/org/gradle/caching/BuildCacheServiceExtensibilityIntegrationTest.groovy

            """
            file("src/main/java/Main.java") << """
                public class Main {}
            """
    
            when:
            withBuildCache().run "assemble"
            then:
            outputContains "Loading "
            outputContains "Storing "
        }
    
        def "produces deprecation message when BuildCacheKey.getDisplayName() is called"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            expect:
            project.plugins.hasPlugin(ReportingBasePlugin)
        }
    
        def "pmd 7.0.0 is loading the right dependencies"() {
            expect:
            PmdPlugin.calculateDefaultDependencyNotation("7.0.0") == ImmutableSet.of("net.sourceforge.pmd:pmd-java:7.0.0", "net.sourceforge.pmd:pmd-ant:7.0.0")
        }
    
        def "pmd 7.0.0-rc4 is loading the right dependencies"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. cni/pkg/install/cniconfig.go

    			confList, err = libcni.ConfListFromFile(confFile)
    			if err != nil {
    				installLog.Warnf("Error loading CNI config list file %s: %v", confFile, err)
    				continue
    			}
    		} else {
    			conf, err := libcni.ConfFromFile(confFile)
    			if err != nil {
    				installLog.Warnf("Error loading CNI config file %s: %v", confFile, err)
    				continue
    			}
    			// Ensure the config has a "type" so we know what plugin to run.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top