Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 671 for isStandard (0.21 sec)

  1. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingOutput.java

    @HasInternalProtocol
    public interface LoggingOutput {
        /**
         * Adds a listener which receives output written to standard output by the Gradle logging system.
         *
         * @param listener The listener to add.
         */
        void addStandardOutputListener(StandardOutputListener listener);
    
        /**
         * Removes a listener from standard output.
         *
         * @param listener The listener to remove.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

        | org.gradle.usage               | java-runtime | java-runtime |
        | org.gradle.dependency.bundling |              | external     |
        | org.gradle.jvm.environment     |              | standard-jvm |
        | org.gradle.jvm.version         |              | 11           |
    
    io.vertx:vertx-lang-groovy:3.9.4
    \--- runtimeClasspath
    
    io.vertx:vertx-lang-groovy-gen:3.9.4
      Variant runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpec.java

        @Override
        public BaseExecSpec setStandardInput(InputStream inputStream) {
            throw new UnsupportedOperationException("Standard streams cannot be configured for exec output provider");
        }
    
        @Override
        public InputStream getStandardInput() {
            throw new UnsupportedOperationException("Standard streams cannot be configured for exec output provider");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

            then:
            expectAndroid()
        }
    
        def "prefers standard JVM variant by default"() {
            given:
            prepareResolve('legacy', 'jre')
    
            when:
            run ':checkDeps'
    
            then:
            expectStandardJVM()
        }
    
        def "can enforce standard JVM variant on Android by constraint"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutputFactory.java

        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
         * @param logCategory The log category.
         * @return the output
         */
        StyledTextOutput create(String logCategory);
    
        /**
         * Creates a {@code StyledTextOutput} with the given category and the standard output log level.
         *
         * @param logCategory The log category.
         * @return the output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * Listens to the output events like printing to standard output or error
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestOutputListener {
    
        /**
         * Fired when during test execution anything is printed to standard output or error
         *
         * @param testDescriptor describes the test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

        }
    
        @Override
        public void apply(Project target) {
            // tag::problems-api-report[]
            problems.forNamespace("reporters.standard.plugin").reporting(problem -> problem
                    .id("adhoc-plugin-deprecation", "Plugin is deprecated")
                    .contextualLabel("The 'standard-plugin' is deprecated")
                    .documentedAt("https://github.com/gradle/gradle/README.md")
                    .severity(Severity.WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/standard-plugin/build.gradle

    plugins {
        id 'java-gradle-plugin'
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            create('standard-plugin') {
                id = 'reporters.standard.plugin'
                implementationClass = 'reporters.StandardPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 267 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/reporters/standard-plugin/build.gradle.kts

    plugins {
        `java-gradle-plugin`
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            create("standard-plugin") {
                id = "reporters.standard.plugin"
                implementationClass = "reporters.StandardPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 264 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list_std.txt

    env GO111MODULE=on
    env GOPROXY=off
    
    [!compiler:gc] skip
    [short] skip
    
    # Outside of GOROOT, our vendored packages should be reported as part of the standard library.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout ^vendor/golang\.org/x/net/http2/hpack
    stdout ^cmd/vendor/golang\.org/x/arch/x86/x86asm
    ! stdout ^golang\.org/x/
    
    # The dependencies of those packages should also be vendored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top