Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,219 for Versions (0.12 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, the "deleted" dependency contains an imported package, but
    # Go 1.16 selects a higher version (in which that package has been deleted).
    
    cp go.mod go.mod.orig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns the version of the artifact cache layout
         */
        CacheVersion getArtifactCacheLayoutVersion();
    
        /**
         * Returns true if the wrapper from this distribution can execute a build using the specified version.
         */
        boolean wrapperCanExecute(GradleVersion version);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/TargetGradleVersion.java

     * limitations under the License.
     */
    package org.gradle.integtests.tooling.fixture;
    
    import java.lang.annotation.*;
    
    /**
     * Specifies the range of target Gradle versions that the given tooling API test can work with.
     * <p>
     * A default version range is defined on the ToolingApiSpecification, which can be overridden by a separate annotation placed on a test task or test method.
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiVersion.java

     * limitations under the License.
     */
    package org.gradle.integtests.tooling.fixture;
    
    import java.lang.annotation.*;
    
    /**
     * Specifies the range of tooling API versions that the given tooling API test can work with.
     * <p>
     * A default version range is defined on the ToolingApiSpecification, which can be overridden by a separate annotation placed on a test task or test method.
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

    /**
     * The outputs of a graph resolution. All results on this type are lazy. Resolution is only performed
     * when the results are accessed.
     *
     * TODO: This type is intended to be made public in future Gradle versions, in some form.
     */
    @HasInternalProtocol
    public interface ResolutionOutputs {
    
        /**
         * A {@link FileCollection} containing all resolved files. The returned collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

    // CHECK-LABEL: func @move_broadcast
    func.func @move_broadcast(%arg0: tensor<f32>) -> () {
      // CHECK:      %[[ELEM_0:.*]] = "tf.Const"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cmd/metrics-v3-scanner.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/integration_test/tensorflow_to_stablehlo_test.py

            module = ir.Module.parse(module_bytecode)
            self.assertIn('stablehlo.add %arg0, %cst : tensor<4xf32>', str(module))
    
      def test_tf_mlir_to_stablehlo(self):
        assembly = """
          module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
            func.func @main(%arg0 : tensor<?xf32>) -> tensor<?xf32> {
              %cst = "tf.Const"() {value = dense<1.0> : tensor<f32>} : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    The -go=version flag sets the expected Go language version.
    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get go@version'.
    
    The -toolchain=version flag sets the Go toolchain to use.
    This flag is mainly for tools that understand Go version dependencies.
    Users should prefer 'go get toolchain@version'.
    
    The -exclude=path@version and -dropexclude=path@version flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    [[sec:version_catalog_plugin_application]]
    == Using a Version Catalog
    
    When a project uses a version catalog, plugins can be referenced via aliases when applied.
    
    
    Let's take a look at a simple Version Catalog:
    
    .gradle/libs.versions.toml
    [source,toml]
    ----
    [versions]
    intellij-plugin = "1.6"
    
    [plugins]
    jetbrains-intellij = { id = "org.jetbrains.intellij", version.ref = "intellij-plugin" }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top