Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 634 for setPath (0.19 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformOutputs.java

                        throw new InvalidUserDataException("Transform output file " + output.getPath() + " must be a file, but is not.");
                    }
                    if (outputDirectories.contains(output) && !output.isDirectory()) {
                        throw new InvalidUserDataException("Transform output directory " + output.getPath() + " must be a directory, but is not.");
                    }
                }
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/AbstractModelCreationRuleExtractor.java

                if (!target.getPath().equals(ModelPath.ROOT)) {
                    throw new InvalidModelRuleDeclarationException(String.format("Rule %s cannot be applied at the scope of model element %s as creation rules cannot be used when applying rule sources to particular elements", getRuleDefinition().getDescriptor(), target.getPath()));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

        }
    
        public void test_getData() throws Exception {
            final AccessResultDataImpl accessResultDataImpl = new AccessResultDataImpl();
            accessResultDataImpl.setData("hoge.txt".getBytes());
            accessResultDataImpl.setEncoding(Constants.UTF_8);
            accessResultDataImpl.setTransformerName("fileTransformer");
    
            setBaseDir();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/readOnlyNestedProperty/groovy/buildSrc/src/main/java/Download.java

        @TaskAction
        void run() {
            // Use the `resource` property
            System.out.println("Downloading https://" + getResource().getHostName().get() + "/" + getResource().getPath().get());
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 522 bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftcToolChain.java

            this.toolSearchPath = tools;
            this.execActionFactory = execActionFactory;
            this.workerLeaseService = workerLeaseService;
        }
    
        @Override
        public List<File> getPath() {
            return toolSearchPath.getPath();
        }
    
        @Override
        public void path(Object... pathEntries) {
            for (Object path : pathEntries) {
                toolSearchPath.path(resolve(path));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

                 * <p>
                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preRoot(VisitState state);
    
                /**
                 * Called before entering a directory.
                 * <p>
                 * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
                 */
                void preDirectory(VisitState state);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSetNodeInitializerExtractionStrategy.java

                ModelType<ModelSet<T>> setType = ModelTypes.modelSet(elementType);
                DefaultModelViewState state = new DefaultModelViewState(modelNode.getPath(), setType, ruleDescriptor, mutable, !mutable);
                ChildNodeInitializerStrategy<T> childStrategy = Cast.uncheckedCast(modelNode.getPrivateData(ChildNodeInitializerStrategy.class));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

                    if (nameLink == null) {
                        throw new IllegalStateException("expected name node for " + modelNode.getPath());
                    }
                    nameLink.setPrivateData(ModelType.of(String.class), modelNode.getPath().getName());
                }
            }
        }
    
        private <P> void addPropertyLink(MutableModelNode modelNode,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top