Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,779 for depend (0.15 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/GradleReferencedType.java

    import com.squareup.javapoet.ClassName;
    import com.squareup.javapoet.TypeName;
    import org.objectweb.asm.Type;
    
    /**
     * Used since we don't want to depend on Gradle types directly, since that way we have to depend on Gradle projects like core-api.
     * And we don't want to depend on Gradle projects since that way we can't apply this annotation processor to them.
     */
    public enum GradleReferencedType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            """
    
            then:
            fails "foo"
    
            and:
            failure.assertHasCause("Cannot add task 'foo' as a task with that name already exists.")
        }
    
        def "a non-rule-source task can depend on a rule-source task"() {
            given:
            buildFile << """
            ${ruleBasedTasks()}
    
            class Rules extends RuleSource {
                @Mutate
                void addTasks(ModelMap<Task> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/substitutorMarkers.kt

    /**
     * A [KaSubstitutor] which substitution logic can be represented as a [Map] from a [KaTypeParameterSymbol] to corresponding [KaType]
     * This is an implementation details and Analysis API clients should not depend on the fact if some [KaSubstitutor] is [KaMapBackedSubstitutor] or not.
     */
    @KaAnalysisApiInternals
    interface KaMapBackedSubstitutor : KaSubstitutor {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      }
      for (auto result : op->getResults()) {
        if (IsResourceTensor(result)) return true;
      }
      return false;
    }
    
    // This transformation pass takes an operation that has or depends on side
    // effects and wraps it in a TFL::ControlNodeOp, which is made to depend on the
    // control token generated by the most recent preceding such operation, if
    // any. This copies the logic that is currently executed at runtime (in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                        t.doFirst { throw new RuntimeException("broken")}
                    }
                }
            '''
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21542")
        def "finalizer can depend on a task that it finalizes"() {
            given:
            buildFile '''
                task finalizer(type: BreakingTask) {
                  dependsOn "finalizerDep"
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. src/runtime/badlinkname_linux.go

    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:47:42 UTC 2024
    - 506 bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Function.java

       *
       * <p><b>Warning: do not depend</b> on the behavior of this method.
       *
       * <p>Historically, {@code Function} instances in this library have implemented this method to
       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/syscall/badlinkname_unix.go

    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    // golang.org/x/sys linknames getsockopt.
    // Do not remove or change the type signature.
    //
    //go:linkname getsockopt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/build.gradle.kts

        api(project(":base-services"))
        api(project(":logging-api"))
        api(project(":serialization"))
        api(project(":logging"))
        api(project(":stdlib-java-extensions"))
    
        // The client should not depend on core or core-api, but core still contains some types that are shared between the client and daemon
        api(project(":core-api"))
        api(project(":core"))
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/client-services/build.gradle.kts

    dependencies {
        api(project(":concurrent"))
        api(project(":messaging"))
        api(project(":logging"))
        api(project(":daemon-protocol"))
        api(project(":base-services"))
    
        // The client should not depend on core, but core still contains some types that are shared between the client and daemon
        api(project(":core"))
    
        implementation(libs.jsr305)
        implementation(libs.guava)
        implementation(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top