Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 290 for Display (0.13 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

         *
         * @param properties additional properties for the cache.
         * @return this
         */
        CacheBuilder withProperties(Map<String, ?> properties);
    
        /**
         * Specifies the display name for this cache. This display name is used in logging and error messages.
         */
        CacheBuilder withDisplayName(String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

     */
    public interface DependencyLockingProvider {
    
        /**
         * Loads the lock state for the lock with the given ID.
         *
         * @param lockId the ID of the lock to load
         * @param lockOwner the display name of the owner of the lock
         *
         * @return the lock state corresponding to the lock with the given ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenPerformanceTestRunner.groovy

                throw new IllegalArgumentException("Maven invocation display name must start with 'Maven '")
            }
        }
    
        @Override
        protected void finalizeGradleSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
            super.finalizeGradleSpec(builder)
            if (!builder.displayName.startsWith("Gradle ")) {
                throw new IllegalArgumentException("Gradle invocation display name must start with 'Gradle '")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Also covered by tests in configuration cache project")
        def "generates configure, task graph and run tasks operations for buildSrc of included builds with #display"() {
            given:
            dependency 'org.test:buildB:1.0'
            buildB.file("buildSrc/settings.gradle") << """
                ${settings}
            """
    
            when:
            execute(buildA, ":jar", [])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            instant.stopped > instant.completed1
            instant.stopped > instant.completed2
        }
    
        def cannotStopExecutorFromAnExecutorThread() {
            when:
            def executor = factory.create('<display-name>')
            def action = {
                executor.stop()
            }
            executor.execute(action)
            executor.stop()
    
            then:
            IllegalStateException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

    }
    
    task show {
        inputs.files configurations.compile
        doLast {
            println "files: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.file.name }
            println "display-names: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.toString() }
            println "ids: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.id.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/syscall/syscall.go

    // Package syscall contains an interface to the low-level operating system
    // primitives. The details vary depending on the underlying system, and
    // by default, godoc will display the syscall documentation for the current
    // system. If you want godoc to display syscall documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @ToBeFixedForConfigurationCache
        def "generates configure, task graph and run tasks operations for source dependency build with #display"() {
            given:
            repo.file("settings.gradle") << """
                ${settings}
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/ProblemLocationAnalyzer.java

    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface ProblemLocationAnalyzer {
        /**
         * Calculates the location for a problem with the given stack.
         * @return A display name for the location or null for an unknown location.
         */
        @Nullable
        Location locationForUsage(Failure failure, boolean fromException);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top