Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for getVars (0.13 sec)

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

        @Override
        ExecHandle build() {
            if (OperatingSystem.current().isWindows()) {
                def theArgs = ['/d', '/c', executable.replace('/', File.separator)] + getArgs()
                setArgs(theArgs) //split purposefully to avoid weird windows CI issue
                executable = 'cmd.exe'
            } else {
                executable = "${workingDir}/${executable}"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        if (!tensor_type) return cast_op.getArg();
    
        auto attr_names = tensor_type.getAttrKeys();
        if (attr_names.empty() || attr_names.size() > 1) return cast_op.getArg();
        StringRef tfr_type_attr = attr_names[0].getValue();
        if (!fixed_elt_type_attrs_.contains(tfr_type_attr)) return cast_op.getArg();
    
        Type result_elt_type = GetFixedElementType(tfr_type_attr, rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/RemoteIvyModule.groovy

     */
    
    package org.gradle.test.fixtures.ivy
    
    import org.gradle.test.fixtures.resource.RemoteArtifact
    
    interface RemoteIvyModule extends IvyModule {
        RemoteArtifact getIvy()
        RemoteArtifact getJar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 816 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskParser.java

        }
    
        public List<TaskSelection> parseTasks(TaskExecutionRequest taskExecutionRequest) {
            List<TaskSelection> out = new ArrayList<>();
            List<String> remainingPaths = new LinkedList<String>(taskExecutionRequest.getArgs());
            while (!remainingPaths.isEmpty()) {
                String path = remainingPaths.remove(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver_test.cc

          /*is_qdq_conversion=*/false);
    
      quantization_driver.Initialize();
      ASSERT_TRUE(quantization_driver.PropagateParamsAndReturnIfChanged());
      EXPECT_THAT(quantization_driver.GetArgs(), Not(IsEmpty()));
    
      for (const auto& arg : quantization_driver.GetArgs()) {
        const QuantState& state = quantization_driver.GetArgQuantState(arg);
        EXPECT_TRUE(isa<quant::QuantizedType>(state.params));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

                //
                // Looks like on Windows (MinGW):
                // main T 0000000000401550
                def splits = line.split(' ')
                String name = splits[0]
                char type = splits[1].getChars()[0]
                return new BinaryInfo.Symbol(name, type, Character.isUpperCase(type))
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/mirror/SetMirrorsSampleModifier.java

            for (Command command : commands) {
                if ("gradle".equals(command.getExecutable())) {
                    List<String> args = new ArrayList<String>(command.getArgs());
                    args.add("--init-script");
                    args.add(initScript.getAbsolutePath());
                    args.add("-D" + PLUGIN_PORTAL_OVERRIDE_URL_PROPERTY + "=" + gradlePluginRepositoryMirrorUrl());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/dependencyConfigurationSchema.kt

            registerObjectConversionComponent(component)
        }
    }
    
    
    /**
     * Introduces functions for registering dependencies, such as `implementation(...)`, as member functions of
     * types with getters returning [DependencyCollector] in the schema.
     * Resolves such functions at runtime, if used with object conversion.
     */
    private
    class DependencyCollectorsComponent : AnalysisSchemaComponent, ObjectConversionComponent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpModule.groovy

            this.server = server
            this.backingModule = backingModule
        }
    
        SftpArtifact getIvy() {
            return new SftpArtifact(server, ivyFile)
        }
    
        SftpArtifact getJar() {
            return new SftpArtifact(server, jarFile)
        }
    
        @Override
        SftpArtifact getModuleMetadata() {
            return new SftpArtifact(server, moduleMetadataFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

         */
        @Nullable
        List<String> getCleanTasks();
    
        /**
         * The Gradle arguments. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known or not constant for all experiments
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top