Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for executors (0.2 sec)

  1. tensorflow/BUILD

        visibility = ["//visibility:public"],
        win_def_file = ":tensorflow_filtered_def_file",
    )
    
    # To avoid duplication, check that the C++ or python library does not depend on
    # the stream executor cuda plugins. Targets that want to use cuda APIs should
    # instead depend on the dummy plugins in @local_tsl//tsl/platform/default/build_config
    # and use header only targets.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
                addTrustedKey("org:foo:1.0", validPublicKeyHexString, "pom", "pom")
            }
            if (stopInBetween) {
                executer.stop()
            }
            fails ":compileJava"
    
            then:
            failure.assertHasCause """Dependency verification failed for configuration ':compileClasspath':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When the <<#native_binaries:cunit,CUnit>> or <<#native_binaries:google_test,GoogleTest>> plugins are applied, the task that executes the test suites for a component are automatically wired to the appropriate _check task_.
    
    You can also add custom check tasks as follows:
    
    === Example: Adding a custom check task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                    description = "My custom legacy configuration"
                    assert canBeResolved
                    assert canBeConsumed
                }
            """
    
            when:
            executer.expectDeprecationWarning('(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.')
            run ':outgoingVariants', '--all'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This behavior was potentially an error because the `classesDirs` property did not contain the output for `processResources`.
    Since 8.0, this implicit dependency is removed.
    Now, depending on `classesDirs` only executes the tasks which directly produce files in the classes directories.
    
    Consider the following buildscript:
    ```groovy
    plugins {
        id 'java-library'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                if (!structSchema.isAnnotated()) {
                    return;
                }
    
                // Adds a void $propName(Closure<?> cl) method that executes the closure
                MethodVisitor methodVisitor = declareMethod(visitor, property.getName(), Type.getMethodDescriptor(Type.VOID_TYPE, CLOSURE_TYPE), null);
                putThisOnStack(methodVisitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @Rule
        HttpServer httpServer = new HttpServer()
        def remoteRepo = new MavenHttpRepository(httpServer, mavenRepo)
    
        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        println "processing \${input.name}"
                        assert input.file
                    }
                }
            """
    
            when:
            executer.withArgument("--continue")
            fails(":a:resolve")
    
            then:
            transformed("c.jar")
            failure.assertHasFailures(1)
            failure.assertHasDescription("Execution failed for task ':b:producer'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
     * also cause future calls to the client to be rejected.
     *
     * ```java
     * client.dispatcher().executorService().shutdown();
     * ```
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::{snippetsPath}/configurationCache/noProblem/tests/store.out[]
    ...
    BUILD SUCCESSFUL in 4s
    1 actionable task: 1 executed
    Configuration cache entry stored.
    ----
    
    Running this for the first time, the configuration phase executes, calculating the task graph.
    
    Then, run the same command again.
    This reuses the cached configuration:
    
    ----
    ❯ gradle --configuration-cache help
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top