Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 738 for getPatch (0.25 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractFileAccessor.java

            Path path = getPath(name, level);
            Files.write(path, bytes, StandardOpenOption.CREATE_NEW);
            return new Source(path);
        }
    
        @Override
        public DataTarget createTarget(String name, Level level) {
            return new Target(getPath(name, level));
        }
    
        private Path getPath(String name, Level level) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/LoadProjectsBuildOperationType.java

                 * The path of the project.
                 *
                 * See {@code org.gradle.api.Project#getPath()}.
                 */
                String getPath();
    
                /**
                 * The path of the project within the entire build execution.
                 * For top-level builds this will be the same as {@link #getPath()}.
                 * For nested builds the project path will be prefixed with a build path.
                 *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftElement.java

            final SourceFile beforeFile = beforeElement.getSourceFile();
            final SourceFile afterFile = afterElement.getSourceFile();
            assert beforeFile.getPath().equals(afterFile.getPath());
            assert beforeFile.getName().equals(afterFile.getName());
            assert !beforeFile.getContent().equals(afterFile.getContent());
    
            return new Transform() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    indent += "  ";
                }
            } else if (collectStepTrace != null) {
                if (collectStepTrace.getPath().get(0).getArtifact() == null) {
                    return;
                }
                baseName = ArtifactIdUtils.toId(collectStepTrace.getPath().get(0).getArtifact())
                        .replace(":", "_");
                trackingFile = trackingDir.resolve(baseName + ext);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/volume/secret/secret.go

    	volName string
    	podUID  types.UID
    	plugin  *secretPlugin
    	mounter mount.Interface
    	volume.MetricsProvider
    }
    
    var _ volume.Volume = &secretVolume{}
    
    func (sv *secretVolume) GetPath() string {
    	return getPath(sv.podUID, sv.volName, sv.plugin.host)
    }
    
    // secretVolumeMounter handles retrieving secrets from the API server
    // and placing them into the volume on the host.
    type secretVolumeMounter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

                this.rootDir = rootDir;
            }
    
            @Override
            public String getProjectPath() {
                return projectPath.getPath();
            }
    
            @Override
            public String getBuildPath() {
                return buildPath.getPath();
            }
    
            @Override
            public File getRootDir() {
                return rootDir;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiLibrary.java

            return platform;
        }
    
        public String getFilename() {
            return filename;
        }
    
        public String getPath() {
            return platform + "/" + filename;
        }
    
        public String getResourcePath() {
            return "/META-INF/native/" + getPath();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

            if (deploymentDescriptor != null && details.getPath().lastIndexOf("/") <= 0) {
                EarModule module;
                if (details.getPath().toLowerCase().endsWith(".war")) {
                    module = new DefaultEarWebModule(details.getPath(), details.getPath().substring(0, details.getPath().lastIndexOf(".")));
                } else {
                    module = new DefaultEarModule(details.getPath());
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

            for (UnboundRuleInput input : inputs) {
                writer.print(indent(2));
                writer.write("- ");
                writer.write(input.getPath() == null ? "<no path>" : input.getPath());
                writer.write(" ");
                writer.write(input.getType() == null ? "<untyped>" : input.getType());
                if (input.getDescription() != null) {
                    writer.write(" ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifier.java

        }
    
        @Override
        public int hashCode() {
            int result = Objects.hashCode(parent);
            result = 31 * result + name.hashCode();
            return result;
        }
    
        String getPath() {
            Deque<String> names = new ArrayDeque<>();
            names.add(name);
            ClassLoaderScopeIdentifier nextParent = parent;
            while (nextParent != null) {
                names.addFirst(nextParent.name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 03 07:46:21 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top