Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for CL (0.02 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                if (this.root != null) {
                    throw new IllegalStateException("Root node is already defined")
                }
                this.root = projectNode(projectPath, moduleVersion)
                cl.resolveStrategy = Closure.DELEGATE_ONLY
                cl.delegate = this.root
                cl.call()
                return this.root
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "locates module using jar from runtime ClassLoader"() {
            given:
            def cl = classLoaderFor([jarFile, runtimeDep])
            def registry = new DefaultModuleRegistry(cl, ClassPath.EMPTY, null)
    
            expect:
            def module = registry.getModule("gradle-some-module")
            module.implementationClasspath.asFiles == [jarFile]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

        return "Preprocess TF op prior to quantization";
      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::UNIFORM_QUANTIZED),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            metadata.version == VersionNumber.parse("12.0")
    
            where:
            compilerPath              | platform
            "VC/bin/cl.exe"           | "x86"
            "VC/bin/x86_amd64/cl.exe" | "x64"
        }
    
        def "can determine legacy metadata from compiler path when not found in command line results"() {
            def dir1 = tmpDir.createDir("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                void execute(Runnable runnable) {
                    startThread(runnable)
                }
            }
        }
    
        TestThread startThread(Runnable cl) {
            lock.lock()
            try {
                TestThread thread = new TestThread(this, lock, cl)
                thread.start()
                return thread
            } finally {
                lock.unlock()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/dashboard_test.go

    				d := d
    				t.NewSubTest(d.name).Run(func(t framework.TestContext) {
    					for _, cl := range t.Clusters() {
    						if !cl.IsPrimary() && d.requirePrimary {
    							// Skip verification of dashboards that won't be present on non primary(remote) clusters.
    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

            new BuildTestFixture(projectDir).withBuildInRootDir().singleProjectBuild(projectName, cl)
        }
    
        BuildTestFile singleProjectBuildInSubDir(String projectName, @DelegatesTo(BuildTestFile) Closure cl = {}) {
            new BuildTestFixture(projectDir).withBuildInSubDir().singleProjectBuild(projectName, cl)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    // NOLINTNEXTLINE
    static llvm::cl::opt<bool> print_function_result_mapping(
        "print-function-result-mapping",
        llvm::cl::desc(
            "Print the mapping of function result to flatbuffer output buffer"),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    static llvm::cl::opt<std::string> weight_quantization(
        "weight_quantization",
        llvm::cl::desc("The type of the quantized weight buffer. Must be NONE, "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        llvm::cl::desc(
            "Emit HLO modules using tuples as args for the entry computation"),
        llvm::cl::init(false));
    // NOLINTNEXTLINE
    llvm::cl::opt<bool> emit_return_tuple(
        "tf-xla-emit-return-tuple",
        llvm::cl::desc("Emit HLO modules with entry computations returning tuple"),
        llvm::cl::init(false));
    }  // namespace
    
    namespace tensorflow {
    
    namespace {
    
    mlir::LogicalResult PrintHloModuleText(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

         */
        void setupBuildWithColorAttributes(TestFile buildFile = getBuildFile(), @DelegatesTo(Builder) Closure cl = {}) {
            def builder = new Builder()
            builder.produceFiles()
            cl.delegate = builder
            cl.call()
            setupBuildWithColorAttributes(buildFile, builder)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top