Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 437 for locations (0.6 sec)

  1. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/fixtures/IsolatedProjectsIdeSyncFixture.groovy

        }
    
        HasConfigurationCacheProblemsInReportSpec withLocatedProblem(String location, String problem) {
            withLocatedProblem(startsWith(location), problem)
            return this
        }
    
        HasConfigurationCacheProblemsInReportSpec withLocatedProblem(Matcher<String> location, String problem) {
            locationsWithProblems.add(Pair.of(location, problem))
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

            "Emit TFLite built in operations in the generated TFLite model"),
        llvm::cl::location(emit_builtin_tflite_ops), llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    static opt<bool, true> emit_select_tf_ops_flag(
        "emit-select-tf-ops",
        llvm::cl::desc(
            "Emit Select TF operations (Flex ops) in the generated TFLite model"),
        llvm::cl::location(emit_select_tf_ops), llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ArtifactCacheMetadata.java

        /**
         * Returns the root directory for the module artifacts file store.
         *
         * @return File store location
         */
        File getFileStoreDirectory();
    
        /**
         * Returns the root directory for the external resources file store.
         *
         * @return File store location
         */
        File getExternalResourcesStoreDirectory();
    
        /**
         * Returns the root directory for the meta-data file store.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:07:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        def "Non-Java project has default output location"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin'
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Java project has default output location"() {
            setup:
            buildFile << "apply plugin: 'java'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    // to SPDY to proxy to kubelet (and ContainerRuntime).
    type StreamTranslatorHandler struct {
    	// Location is the location of the upstream proxy. It is used as the location to Dial on the upstream server
    	// for upgrade requests.
    	Location *url.URL
    	// Transport provides an optional round tripper to use to proxy. If nil, the default proxy transport is used
    	Transport http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/EnvironmentVariableListInstallationSupplierTest.groovy

            then:
            directories.size() == 2
            directories[0].location == jdk8
            directories[0].source == "environment variable 'JDK8'"
            directories[1].location == jdk9
            directories[1].source == "environment variable 'JDK9'"
        }
    
        Set<InstallationLocation> consistentOrder(Set<InstallationLocation> s) {
            s.sort { it.location.absolutePath }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

    @EventScope(Scope.BuildTree::class)
    interface ProblemFactory {
        /**
         * Returns a default location inferred from the calling thread's state.
         */
        fun locationForCaller(consumer: String? = null): PropertyTrace
    
        /**
         * Creates a problem with the given message and exception.
         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/constant_utils.h

    absl::StatusOr<arith::ConstantOp> CreateConstOpWithSingleValue(
        PatternRewriter* rewriter, Location loc, ShapedType shaped_type, int value);
    
    // Returns a Constant op with a splat vector value.
    absl::StatusOr<arith::ConstantOp> CreateConstOpWithVectorValue(
        PatternRewriter* rewriter, Location loc, ShapedType shaped_type, int value);
    
    }  // namespace TFL
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 06:24:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. guava/pom.xml

                  <location>${project.basedir}/javadoc-link/jsr305</location>
                </offlineLink>
                <offlineLink>
                  <url>https://static.javadoc.io/com.google.j2objc/j2objc-annotations/1.1/</url>
                  <location>${project.basedir}/javadoc-link/j2objc-annotations</location>
                </offlineLink>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/LocationAwareExceptionTest.groovy

        def "visitor visits location"() {
            ExceptionContextVisitor visitor = Mock()
            def cause = new RuntimeException()
            def e = new LocationAwareException(cause, "location", 42)
    
            when:
            e.accept(visitor)
    
            then:
            1 * visitor.visitCause(cause)
            1 * visitor.endVisiting()
            1 * visitor.visitLocation("Location line: 42")
            0 * visitor._
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top