Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 149 for buildC (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    .Declaring dependencies
    ====
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin",files="build.gradle.kts[tags=dependencies]"]
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy",files="build.gradle[tags=dependencies]"]
    ====
    
    Because `vert.x` depends on `jackson-core`, we would actually resolve the following dependency versions:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       (Template Engines) for details.
    #
    #       (An example invocation of this template is from
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java
    #       within the Gradle project, which builds "gradlew".)
    # */ %>
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    			Name:   r.Status.User.Username,
    			UID:    r.Status.User.UID,
    			Groups: r.Status.User.Groups,
    			Extra:  extra,
    		},
    		Audiences: auds,
    	}, true, nil
    }
    
    // tokenReviewInterfaceFromConfig builds a client from the specified kubeconfig file,
    // and returns a TokenReviewInterface that uses that client. Note that the client submits TokenReview
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "notCacheableByDefault"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "unspecified"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "noOutputs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. ci/devinfra/docker_windows/Dockerfile

        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\Program Files (x86)\Windows Kits\10\App Certification Kit\", \"Machine\");
    
    # Install WiX toolset (v4) - Necessary for MSI Installer/Signing builds
    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device.h

      // `use_global_compute_stream` in `XlaDevice::Options` is set to true.
      static mutex global_mu_;
      static std::vector<std::shared_ptr<se::Stream>>* global_compute_streams_
          TF_GUARDED_BY(global_mu_);
    };
    
    // Builds OpKernel registrations on 'device' for the JIT operators
    // registered on 'jit_device'. Returns ownership of a XlaDeviceOpRegistrations
    // object that encapsulates the kernel registrations.
    struct XlaDeviceOpRegistrations {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMaker.java

          useCustomMap = true;
        }
        return this;
      }
    
      Strength getValueStrength() {
        return MoreObjects.firstNonNull(valueStrength, Strength.STRONG);
      }
    
      /**
       * Builds a thread-safe map. This method does not alter the state of this {@code MapMaker}
       * instance, so it can be invoked again to create multiple independent maps.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

        /**
         * Returns the build services that are shared by all projects of this build.
         *
         * @since 6.1
         */
        BuildServiceRegistry getSharedServices();
    
        /**
         * Returns the included builds for this build.
         *
         * @since 3.1
         */
        Collection<IncludedBuild> getIncludedBuilds();
    
        /**
         * Returns the included build with the specified name for this build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            "consuming descendant" | 'build/dir'    | "dir"      | "build/dir/sub/output.txt" | "build/dir/sub/output.txt"
        }
    
        def "ignores missing dependency if there is an #relation relation in the other direction"() {
            def sourceDir = "src"
            file(sourceDir).createDir()
            def outputDir = "build/output"
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      """Base class for histogram calibrators."""
    
      def __init__(
          self,
          statistics: calib_stats_pb2.CalibrationStatistics,
          calib_opts: stablehlo_quant_config_pb2.CalibrationOptions,
      ):
        """Builds histogram using statistics.histogram_statistics.
    
        lower_bound                                    hist_mid
             v                                            v
             |=========|=========|=========|=========|=========|
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top