Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 693 for emits (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

         * called except from Gradle internal code.
         *
         * <p>This constructor accepts a dummy parameter since we cannot call the constructor without it,
         * as that emits a deprecation warning. In 9.0, we can change the above constructor to protected
         * and remove this constructor.</p>
         *
         * @since 8.9
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/StacktraceIntegrationTest.groovy

            executer.withArgument('--stacktrace')
    
            when:
            fails()
    
            then:
            assertCauseWithStacktrace('show stacktrace was ALWAYS')
        }
    
        def "emits actionable message when wrong configuration is used"() {
            setup:
            executer.requireDaemon().requireIsolatedDaemons()
            file('gradle.properties') << 'org.gradle.logging.stacktrace=suppress'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

                    }
                }
            """.stripIndent()
    
            expect:
            succeeds("test", "verifyTestOptions", "--warn")
        }
    
        def "setForkEvery null emits deprecation warning"() {
            given:
            buildFile << """
                tasks.withType(Test).configureEach {
                    forkEvery = null
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/internal/trace/raw/writer.go

    // license that can be found in the LICENSE file.
    
    package raw
    
    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

        ValuesConstraintSet& constraints, bool resolve = false,
        bool emit_remarks = false);
    
    // Emits constraints remarks for all operations that use constrained values.
    void EmitValueConstraintsRemarks(const ValuesConstraintSet& constraints);
    
    // Emits constraints remarks for function inputs that are in the constraints
    // set (entry block arguments have constraints).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h

    // Create a test pass for the above with a "fake" session, for lit testing.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInitializeVariablesInSessionInitializerTestPass();
    
    // Create a test pass that emits remarks for each analysis result for resources.
    // This pass is only used for lit testing.
    std::unique_ptr<OperationPass<ModuleOp>> CreateResourceAnalyzerTestPass();
    
    #define GEN_PASS_REGISTRATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/gofmt/gofmt.go

    	if r.state == nil {
    		r.state = <-r.prev
    	}
    	return r.state
    }
    
    // Warnf emits a warning message to the reporter's error stream,
    // without changing its exit code.
    func (r *reporter) Warnf(format string, args ...any) {
    	fmt.Fprintf(r.getState().err, format, args...)
    }
    
    // Write emits a slice to the reporter's output stream.
    //
    // Any error is returned to the caller, and does not otherwise affect the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultResolvedConfiguration.java

                .nagUser();
    
            rethrowFailure();
    
            // Disable deprecation, since the lenient configuration method also emits a deprecation warning
            return DeprecationLogger.whileDisabled(() -> configuration.getFirstLevelModuleDependencies(dependencySpec));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

        def setup() {
            enableProblemsApiCheck()
        }
    
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits deprecation warnings as build operation progress events with context"() {
            when:
            settingsFile "rootProject.name = 'root'"
    
            initScript  """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestListenerBuildOperationAdapterIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        abstract boolean isEmitsTestClassOperations()
        abstract void writeTestSources()
    
        def "emits build operations for junit tests"() {
            given:
            buildFile << """
                apply plugin: 'java'
                repositories { mavenCentral() }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top