Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,766 for depend (0.22 sec)

  1. src/runtime/internal/math/math.go

    // The carry input must be 0 or 1; otherwise the behavior is undefined.
    // The carryOut output is guaranteed to be 0 or 1.
    //
    // This function's execution time does not depend on the inputs.
    // On supported platforms this is an intrinsic lowered by the compiler.
    func Add64(x, y, carry uint64) (sum, carryOut uint64) {
    	sum = x + y + carry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            succeeds 'help'
    
            then: 'shared bean should have been isolated'
            output.count('Bean.value = 42') == 2
            outputDoesNotContain 'Bean.value = 43'
        }
    
        def 'flow actions cannot depend on tasks'() {
            given:
            buildFile '''
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
                import org.gradle.api.tasks.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaPluginIntegrationTest.groovy

            """
    
            expect:
            executer.noDeprecationChecks()
            succeeds(":a:classes", "--parallel")
            true
        }
    
        @Issue("https://github.com/gradle/gradle/issues/6735")
        def "can depend on the source set of another Java project"() {
            createDirs("java", "scala")
            settingsFile << """
                include 'java', 'scala'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pkg/kube/krt/recomputetrigger.go

    // limitations under the License.
    
    package krt
    
    import (
    	"go.uber.org/atomic"
    
    	"istio.io/istio/pkg/ptr"
    )
    
    // RecomputeTrigger trigger provides an escape hatch to allow krt transformations to depend on external state and recompute
    // correctly when those change.
    // Typically, all state is registered and fetched through krt.Fetch. Through this mechanism, any changes are automatically
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

    # The only intended use case of this library is by `pywrap_tensorflow_to_stablehlo`. Not letting
    # `pywrap_tensorflow_to_stablehlo` directly depend on sub-libraries like `static_range_srq` and instead haiving
    # a consolidated impl library `pywrap_tensorflow_to_stablehlo_lib_impl` allows the maintainers to avoid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/LazyLogger.java

      LazyLogger(Class<?> ownerOfLogger) {
        this.loggerName = ownerOfLogger.getName();
      }
    
      Logger get() {
        /*
         * We use double-checked locking. We could the try racy single-check idiom, but that would
         * depend on Logger not contain mutable state.
         *
         * We could use Suppliers.memoizingSupplier here, but I micro-optimized to this implementation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
            // Making the hash order-independent by sorting the entries maximizes CC hits, even if the OS-returned order changes.
            Arrays.sort(entries)
            entries.forEach(hasher::putString)
            hasher.hash()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_query.txt

    env GO111MODULE=on
    
    # TODO(golang.org/issue/41297): we shouldn't need go.sum. None of the commands
    # below depend on the build list.
    
    go list -m -versions rsc.io/quote
    stdout '^rsc.io/quote v1.0.0 v1.1.0 v1.2.0 v1.2.1 v1.3.0 v1.4.0 v1.5.0 v1.5.1 v1.5.2 v1.5.3-pre1$'
    
    # Latest rsc.io/quote should be v1.5.2, not v1.5.3-pre1.
    go list -m rsc.io/quote@latest
    stdout 'rsc.io/quote v1.5.2$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_signing.adoc

    ====
    
    This will create a `Sign` task for each publication you specify and wire all `publish__PubName__PublicationTo__RepoName__Repository` tasks to depend on it. Thus, publishing any publication will automatically create and publish the signatures for its artifacts and metadata, as you can see from this output:
    
    == Example: Sign and publish a project
    
    .Output of `gradle publish`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-fixtures/src/integTest/groovy/org/gradle/java/fixtures/StandaloneTestFixturesIntegrationTest.groovy

                }
            """
            file("src/testFixtures/java/Example.java") << """
                class Example {}
            """
    
            expect:
            succeeds("verify")
        }
    
        def "can depend on test fixtures from another project"() {
            buildFile << """
                plugins {
                    id 'java-test-fixtures'
                }
            """
            file("src/testFixtures/java/Example.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top