Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 471 for setPath (0.13 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. 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)
  5. 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)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/BinaryTransformerTest.java

        public void test_getData() throws Exception {
            final AccessResultDataImpl accessResultData = new AccessResultDataImpl();
            accessResultData.setTransformerName("binaryTransformer");
            accessResultData.setData("xyz".getBytes());
    
            final Object obj = binaryTransformer.getData(accessResultData);
            assertNotNull(obj);
            assertTrue(obj instanceof InputStream);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractListChildMap.java

            return SearchUtil.binarySearch(
                entries,
                candidate -> targetPath.compareToFirstSegment(candidate.getPath(), caseSensitivity)
            );
        }
    
        @Override
        public <RESULT> ChildMap<RESULT> invalidate(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, InvalidationHandler<T, RESULT> handler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:11:25 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

            }
    
            return new Path(Arrays.copyOfRange(segments, n, segments.length), absolute);
        }
    
        public String segment(int index) {
            if (index < 0 || index >= segments.length) {
                throw new IllegalArgumentException("Segment index " + index + " is invalid for path " + getPath());
            }
    
            return segments[index];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. mockwebserver/README.md

      assertEquals("/v1/chat/messages/", request1.getPath());
      assertNotNull(request1.getHeader("Authorization"));
    
      RecordedRequest request2 = server.takeRequest();
      assertEquals("/v1/chat/messages/2", request2.getPath());
    
      RecordedRequest request3 = server.takeRequest();
      assertEquals("/v1/chat/messages/3", request3.getPath());
    
      // Shut down the server. Instances cannot be reused.
      server.shutdown();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top