Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 119 for getVars (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

                startParameter.getTaskRequests().get(0) instanceof RunDefaultTasksExecutionRequest;
            boolean isHelpTaskOnly = startParameter.getTaskRequests().size() == 1 &&
                startParameter.getTaskRequests().get(0).getArgs().contains("help");
    
            return !isIsolatedProjectsEnabled || !(isDefaultTasksRequested || isHelpTaskOnly);
        }
    
        private <T> T runBuild(Supplier<ExecutionResult<? extends T>> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/CompileTaskConfig.java

                if (tool instanceof PreprocessingTool) {
                    task.setMacros(((PreprocessingTool) tool).getMacros());
                }
    
                task.getCompilerArgs().set(tool.getArgs());
            }
        }
    
        abstract void configureCompileTask(AbstractNativeCompileTask task, final NativeBinarySpecInternal binary, final LanguageSourceSetInternal sourceSet);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

                    TaskExecutionRequest originalLaunchable = (TaskExecutionRequest) launchable;
                    TaskExecutionRequest launchableImpl = DefaultTaskExecutionRequest.of(originalLaunchable.getArgs(), originalLaunchable.getProjectPath(), originalLaunchable.getRootDir());
                    requests.add(launchableImpl);
                } else {
                    throw new InternalUnsupportedBuildArgumentException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoAgentJar.java

        }
    
        /**
         * Unzips the resolved {@code org.jacoco.agent.jar} to retrieve the {@code jacocoagent.jar}.
         *
         * @return a file pointing to the {@code jacocoagent.jar}
         */
        public File getJar() {
            if (agentJar == null) {
                agentJar = fileOperations.zipTree(getAgentConf().getSingleFile()).filter(new Spec<File>() {
                    @Override
                    public boolean isSatisfiedBy(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

            if (builtBy != null) {
                this.builtBy(builtBy);
                this.dirs.builtBy(builtBy);
            }
        }
    
        @Override
        public FileCollection getDirs() {
            return dirs;
        }
    
        @Override
        public ConfigurableFileCollection getGeneratedSourcesDirs() {
            return generatedSourcesDirs;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

            return this
        }
    
        IvyModuleHttpArtifact getIvy() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.ivy)
        }
    
        IvyModuleHttpArtifact getJar() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.jar)
        }
    
        @Override
        IvyModuleHttpArtifact getModuleMetadata() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

    import java.util.Map;
    
    public interface IvyModule extends Module {
        String getOrganisation();
        @Override
        String getModule();
        String getRevision();
    
        ModuleArtifact getIvy();
    
        ModuleArtifact getJar();
    
        TestFile getIvyFile();
    
        TestFile getJarFile();
    
        TestFile getModuleMetadataFile();
    
        /**
         * Don't publish an ivy.xml / .module for this module.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt

                "Method" to "$containingType.foo()",
                "Method" to "$containingType.fooExt(java.lang.String)",
                "Method" to "$containingType.fooExt(int)",
                "Method" to "$containingType.getBar()",
                "Method" to "$containingType.getBarExt(java.lang.String)",
                "Method" to "$containingType.getBazar()",
                "Method" to "$containingType.getBazarExt(int)",
            ) + (if (isEnum) listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/tools/op_quant_spec_getters_gen.cc

      llvm::Regex coeff_index_trait_regex{"AffineOpCoefficient<(-?[0-9]*),"};
      llvm::Regex fixed_uniform_trait_regex{
          "FixedResultUniformScale<([0-9]+).*(true|false)>"};
      emitSourceFileHeader("Generated Ops Quant Spec Getters", os);
    
      // Retrieve all the definitions derived from Op definition and sort by record
      // name.
      std::vector<Record *> defs = records.getAllDerivedDefinitions("Op");
      llvm::sort(defs, LessRecord());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 11:18:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

            getMainClass().set(main);
            return this;
        }
    
        /**
         * Returns the arguments passed to the main class to be executed.
         */
        @Nullable @Optional @Input
        List<String> getArgs();
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
        JavaExecSpec args(Object... args);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top