Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 738 for getPatch (0.33 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractProjectAccessorsSourceGenerator.java

            }
            return current.getName();
        }
    
        protected void writeProjectAccessor(String name, ProjectDescriptor descriptor) throws IOException {
            writeLn("    /**");
            String path = descriptor.getPath();
            writeLn("     * Creates a project dependency on the project at path \"" + path + "\"");
            writeLn("     */");
            String returnType = toClassName(path, rootProjectName(descriptor));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

         * @deprecated Use {@link #getPath()} instead.
         */
        @Deprecated
        public File getFile() {
            return path.toFile();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
         * @since 4.0.0
         */
        public Path getPath() {
            return path;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

            }
    
            toolExec.args(invocation.getArgs());
    
            if (!invocation.getPath().isEmpty()) {
                String pathVar = OperatingSystem.current().getPathVar();
                String toolPath = Joiner.on(File.pathSeparator).join(invocation.getPath());
                toolPath = toolPath + File.pathSeparator + System.getenv(pathVar);
                toolExec.environment(pathVar, toolPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/MetadataExtracter.java

            // first let antlr preprocess the grammars...
            for (File grammarFileFile : sources) {
                final String grammarFilePath = grammarFileFile.getPath();
    
                try {
                    hierarchy.readGrammarFile(grammarFilePath);
                } catch (FileNotFoundException e) {
                    // should never happen here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

            ModelPath path;
            if (binding.isBound()) {
                builder.bound();
                path = binding.getNode().getPath();
            } else {
                path = reference.getPath();
                if (path != null) {
                    builder.suggestions(CollectionUtils.stringize(suggestionsProvider.transform(path)));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginRules.java

                for (ProjectInternal subproject : projectRegistry.getSubProjects(projectIdentifier.getPath())) {
                    projectModelResolver.resolveProjectModel(subproject.getPath()).find("visualStudio", VisualStudioExtension.class);
                }
            }
        }
    
        static class VisualStudioPluginProjectRules extends RuleSource {
            @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelBinding.java

            if (boundTo != null) {
                ModelRuleDescriptor creatorDescriptor = node.getDescriptor();
                ModelPath path = node.getPath();
                throw new InvalidModelRuleException(referrer, new ModelRuleBindingException(
                    new AmbiguousBindingReporter(predicate.getReference(), boundTo.getPath(), boundTo.getDescriptor(), path, creatorDescriptor).asString()
                ));
            }
    
            doOnBind(node);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactResolver.java

                    org.eclipse.aether.artifact.Artifact aetherArtifact = session.toArtifact(coord);
                    Artifact artifact = session.getArtifact(aetherArtifact);
                    Path path = artifactManager.getPath(artifact).orElse(null);
                    if (path != null) {
                        paths.put(artifact, path);
                    } else {
                        requests.add(new ArtifactRequest(aetherArtifact, repositories, null));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

                .collect(toList());
    
            String projectIdentityPath = ((ProjectInternal) project).getIdentityPath().getPath();
            DefaultGradleProject gradleProject = new DefaultGradleProject()
                .setProjectIdentifier(new DefaultProjectIdentifier(project.getRootDir(), project.getPath()))
                .setName(project.getName())
                .setDescription(project.getDescription())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

      // drop its uses manually so that we don't leave dangling controls.
      for (const auto& fetch : llvm::enumerate(graph_op.GetFetch().getFetches())) {
        if (fetch.value() == island_op.getControl()) {
          graph_op.GetFetch().getFetchesMutable().erase(fetch.index(), 1);
          break;
        }
      }
      island_op.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top