Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 766 for setPath (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ExecutableTools.java

         */
        VersionNumber getImplementationVersion();
    
        /**
         * Returns the path entries that must be present in order to use these tools, possibly none.
         */
        List<File> getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ModuleArtifact.java

    import org.gradle.test.fixtures.file.TestFile;
    
    public interface ModuleArtifact {
        /**
         * Returns the path of this artifact relative to the root of the repository.
         */
        String getPath();
    
        /**
         * Returns the local backing file of this artifact.
         */
        TestFile getFile();
    
        /**
         * Returns the name of this artifact
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/volume/git_repo/git_repo.go

    type gitRepoVolume struct {
    	volName string
    	podUID  types.UID
    	plugin  *gitRepoPlugin
    	volume.MetricsNil
    }
    
    var _ volume.Volume = &gitRepoVolume{}
    
    func (gr *gitRepoVolume) GetPath() string {
    	name := gitRepoPluginName
    	return gr.plugin.host.GetPodVolumeDir(gr.podUID, utilstrings.EscapeQualifiedName(name), gr.volName)
    }
    
    // gitRepoVolumeMounter builds git repo volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultBuildTask.java

        private final TaskOutcome outcome;
    
        public DefaultBuildTask(String path, TaskOutcome outcome) {
            this.path = path;
            this.outcome = outcome;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public TaskOutcome getOutcome() {
            return outcome;
        }
    
        @Override
        public String toString() {
            return path + "=" + outcome;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/TaskGeneratedReport.java

    import org.gradle.api.Task;
    
    public abstract class TaskGeneratedReport extends SimpleReport {
    
        private static String calculateDisplayName(String name, Task task) {
            return "Report generated by task '" + task.getPath() + "' (" + name + ")";
        }
    
        public TaskGeneratedReport(final String name, OutputType outputType, final Task task) {
            super(name, new Describable() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java

        void setId(IDTYPE id);
    
        String getTransformerName();
    
        void setTransformerName(String transformerName);
    
        byte[] getData();
    
        String getDataAsString();
    
        void setData(byte[] data);
    
        String getEncoding();
    
        void setEncoding(String encoding);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

                boolean found = false;
                for (SourceFile afterFile : afterFiles) {
                    if (beforeFile.getName().equals(afterFile.getName()) && beforeFile.getPath().equals(afterFile.getPath())) {
                        found = true;
                        break;
                    }
                }
    
                if (!found) {
                    return false;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                    .details(new Details() {
                        @Override
                        public String getBuildPath() {
                            return gradle.getIdentityPath().getPath();
                        }
                    });
            }
    
            private PlannedNodeGraph computePlannedNodeGraph(QueryableExecutionPlan.ScheduledNodes scheduledWork) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistration.java

    import com.google.common.collect.Multimap;
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    
    public interface ModelRegistration {
        ModelRuleDescriptor getDescriptor();
    
        ModelPath getPath();
    
        /**
         * Actions that need to be registered when the node is registered.
         */
        Multimap<ModelActionRole, ? extends ModelAction> getActions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/FileReference.java

    import java.io.File;
    
    /**
     * A reference to a file in eclipse.
     */
    public interface FileReference {
        /**
         * Returns the logical path for the file.
         */
        String getPath();
    
        /**
         * Returns the target file.
         */
        File getFile();
    
        /**
         * Returns the jar URL of the file
         */
        String getJarURL();
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top