Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 738 for getPatch (0.23 sec)

  1. src/test/java/org/codelibs/core/io/FileUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testReadUTF8() throws Exception {
            assertThat(FileUtil.readUTF8(getPath("hoge_utf8.txt")), is("あ"));
        }
    
        private String getPath(final String fileName) {
            return getClass().getName().replace('.', '/').replaceFirst(getClass().getSimpleName(), fileName);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/ProjectsIdentifiedProgressDetails.java

            /**
             * @see LoadProjectsBuildOperationType.Result.Project#getName()
             */
            String getName();
    
            /**
             * @see LoadProjectsBuildOperationType.Result.Project#getPath()
             */
            String getPath();
    
            /**
             * @see LoadProjectsBuildOperationType.Result.Project#getIdentityPath()
             */
            String getIdentityPath();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

            Task task = createTask(project, TEST_TASK_NAME)
    
            then:
            Project.PATH_SEPARATOR + TEST_TASK_NAME ==  task.getPath()
    
            when:
            task = createTask(childProject, TEST_TASK_NAME)
    
            then:
            Project.PATH_SEPARATOR + "child" + Project.PATH_SEPARATOR + TEST_TASK_NAME ==  task.getPath()
    
            when:
            task = createTask(childchildProject, TEST_TASK_NAME)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/FileValueSnapshot.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    public class FileValueSnapshot extends AbstractScalarValueSnapshot<String> implements Isolatable<File> {
        public FileValueSnapshot(File value) {
            super(value.getPath());
        }
    
        public FileValueSnapshot(String value) {
            super(value);
        }
    
        @Override
        public ValueSnapshot asSnapshot() {
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/SplitFileHasher.java

            if (globalCacheLocations.isInsideGlobalCache(file.getPath())) {
                return globalHasher.hash(file);
            } else {
                return localHasher.hash(file);
            }
        }
    
        @Override
        public HashCode hash(File file, long length, long lastModified) {
            if (globalCacheLocations.isInsideGlobalCache(file.getPath())) {
                return globalHasher.hash(file, length, lastModified);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 18 16:53:35 UTC 2020
    - 2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskDetails.java

    import org.gradle.api.Task;
    import org.gradle.api.internal.plugins.DslObject;
    import org.gradle.util.Path;
    
    import javax.annotation.Nullable;
    
    public interface TaskDetails {
        Path getPath();
    
        @Nullable
        String getDescription();
    
        String getTypeName();
    
        static TaskDetails of(Path path, Task task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:47:48 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. pkg/volume/downwardapi/downwardapi.go

    )
    
    // downwardAPIPlugin implements the VolumePlugin interface.
    type downwardAPIPlugin struct {
    	host volume.VolumeHost
    }
    
    var _ volume.VolumePlugin = &downwardAPIPlugin{}
    
    func getPath(uid types.UID, volName string, host volume.VolumeHost) string {
    	return host.GetPodVolumeDir(uid, utilstrings.EscapeQualifiedName(downwardAPIPluginName), volName)
    }
    
    func wrappedVolumeSpec() volume.Spec {
    	return volume.Spec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RelocatedArtifact.java

        }
    
        @Deprecated
        @Override
        public File getFile() {
            return artifact.getFile();
        }
    
        @Override
        public Path getPath() {
            return artifact.getPath();
        }
    
        @Override
        public String getProperty(String key, String defaultValue) {
            return artifact.getProperty(key, defaultValue);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            String description = GUtil.elvis(internalProject.getComment(), null);
            DefaultEclipseProject eclipseProject = new DefaultEclipseProject(name, project.getPath(), description, project.getProjectDir(), children).setGradleProject(rootGradleProject.findByPath(project.getPath()));
    
            for (DefaultEclipseProject child : children) {
                child.setParent(eclipseProject);
            }
            addProject(project, eclipseProject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DeferredProjectConfiguration.java

            this.project = project;
        }
    
        public void add(Runnable configuration) {
            if (fired) {
                String message = "Cannot add deferred configuration for project " + project.getPath();
                if (firedSentinel == null) {
                    throw new IllegalStateException(message);
                } else {
                    throw new IllegalStateException(message, firedSentinel);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top