Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,766 for depend (0.11 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludeCycleIntegrationTest.groovy

            then:
            result.assertTasksExecuted(':task3', ':buildB:task2', ':task1')
    
            and:
            canRunFromCache(buildA, 'task1')
        }
    
        def "can indirectly depend on root build task"() {
            given:
            buildA.buildFile << """
                tasks.register('task1') {
                    dependsOn gradle.includedBuild('buildB').task(':task2')
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 19 21:32:57 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/internal_visibility_allowlist.bzl

    """Internal visibility rules."""
    
    def internal_visibility_allowlist():
        """Returns a list of the packages that can depend on internal targets."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 01 02:01:16 UTC 2022
    - 163 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/compileTaskClasspath/kotlin/build.gradle.kts

        // (and not longer the output of compileJava)
        classpath = sourceSets.main.get().compileClasspath
    }
    tasks.named<AbstractCompile>("compileJava") {
        // Java also depends on the result of Groovy compilation
        // (which automatically makes it depend of compileGroovy)
        classpath += files(sourceSets.main.get().groovy.classesDirectory)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 588 bytes
    - Viewed (0)
  4. src/go/doc/comment.go

    package doc
    
    import (
    	"go/doc/comment"
    	"io"
    )
    
    // ToHTML converts comment text to formatted HTML.
    //
    // Deprecated: ToHTML cannot identify documentation links
    // in the doc comment, because they depend on knowing what
    // package the text came from, which is not included in this API.
    //
    // Given the *[doc.Package] p where text was found,
    // ToHTML(w, text, nil) can be replaced by:
    //
    //	w.Write(p.HTML(text))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/buildDependentComponentsReport.out

    > Task :dependentComponents
    
    ------------------------------------------------------------
    Root project 'cunit'
    ------------------------------------------------------------
    
    operators - Components that depend on native library 'operators'
    +--- operators:failingSharedLibrary
    +--- operators:failingStaticLibrary
    |    \--- operatorsTest:failingCUnitExe (t)
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 550 bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraphNode.java

     *
     *
     */
    @Deprecated
    public class MetadataGraphNode {
        /** node payload */
        MavenArtifactMetadata metadata;
    
        /** nodes, incident to this (depend on me) */
        List<MetadataGraphNode> inNodes;
    
        /** nodes, exident to this (I depend on) */
        List<MetadataGraphNode> exNodes;
    
        public MetadataGraphNode() {
            inNodes = new ArrayList<>(4);
            exNodes = new ArrayList<>(8);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/assembleDependentComponentsReport.out

    > Task :dependentComponents
    
    ------------------------------------------------------------
    Root project 'cunit'
    ------------------------------------------------------------
    
    operators - Components that depend on native library 'operators'
    +--- operators:failingSharedLibrary
    +--- operators:failingStaticLibrary
    +--- operators:passingSharedLibrary
    \--- operators:passingStaticLibrary
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 512 bytes
    - Viewed (0)
  8. src/runtime/cgo/iscgo.go

    // for runtime·iscgo. Override it to tell the runtime we're here.
    // There are various function pointers that should be set too,
    // but those depend on dynamic linker magic to get initialized
    // correctly, and sometimes they break. This variable is a
    // backup: it depends only on old C style static linking rules.
    
    package cgo
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname _iscgo runtime.iscgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 646 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top