Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,147 for depend (0.53 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. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts

    // 1. CompileAll is the seed build for docs:distDocs
    // 2. BuildDistributions is the seed build for other asciidoctor tasks
    // 3. buildScanPerformance test, which doesn't depend on compileAll
    // 4. buildScanPerformance test, which doesn't depend on compileAll
        isInBuild(
            "Check_CompileAllBuild",
            "Check_BuildDistributions",
            "Component_GradlePlugin_Performance_PerformanceLatestMaster",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 05:49:29 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/internal/abi/compiletype.go

    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    // UncommonSize returns sizeof(UncommonType).  This currently does not depend on ptrSize.
    // This exported function is in an internal package, so it may change to depend on ptrSize in the future.
    func UncommonSize() uint64 { return 4 + 2 + 2 + 4 + 4 }
    
    // TFlagOff returns the offset of Type.TFlag for a compilation target with a given ptrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependencySpec.java

     * <p>
     * See {@link PluginDependenciesSpec} for more information about declaring plugin dependencies.
     * </p>
     */
    public interface PluginDependencySpec {
    
        /**
         * Specify the version of the plugin to depend on.
         *
         * <pre>
         * plugins {
         *     id "org.company.myplugin" version "1.0"
         * }
         * </pre>
         * <p>
         * By default, dependencies have no (i.e. {@code null}) version.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. 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)
Back to top