Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,148 for FILE (0.14 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonLogFile.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * Carries the location of the log file for the current daemon.
     */
    @ServiceScope(Scope.Global.class)
    public class DaemonLogFile {
        private final File file;
    
        public DaemonLogFile(File file) {
            this.file = file;
        }
    
        public File getFile() {
            return file;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof.go

    	file   *objfile.File
    	pcln   objfile.Liner
    
    	triedDwarf bool
    	dwarf      *dwarf.Data
    }
    
    func (f *file) Name() string {
    	return f.name
    }
    
    func (f *file) ObjAddr(addr uint64) (uint64, error) {
    	return addr - f.offset, nil
    }
    
    func (f *file) BuildID() string {
    	// No support for build ID.
    	return ""
    }
    
    func (f *file) SourceLine(addr uint64) ([]driver.Frame, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig.go

    		installLog.Infof("Waiting for CNI network config file to be written in %v...", mountedCNINetDir)
    		if err := watcher.Wait(ctx); err != nil {
    			return "", err
    		}
    	}
    
    	cniConfigFilepath := filepath.Join(mountedCNINetDir, cniConfName)
    
    	for !file.Exists(cniConfigFilepath) {
    		if strings.HasSuffix(cniConfigFilepath, ".conf") && file.Exists(cniConfigFilepath+"list") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

     *
     * Directory with analysis files has next content:<br>
     * 1. Instrumentation classpath marker file.<br>
     * 2. A properties file with original file hash and original file name.<br>
     * 3. A properties file with instrumented class dependencies in a file.<br><br>
     *
     * File with instrumented class dependencies is a properties file like:<br>
     * [class name 1]=[instrumented super type 1],[instrumented super type 2],...<br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

            def expectedClasspath = [
                file('build/classes/java/test'),
                file('build/resources/test'),
                file('build/classes/java/main'),
                file('build/resources/main'),
            ]
            def expectedExecutable = Jvm.current().javaExecutable.absolutePath
            def expectedJavaVersion = JavaVersion.current().majorVersionNumber
            with(new JsonSlurper().parse(file('build/testTaskProperties.json')), Map) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

                    execute(["some", "string"] as String[])
                    execute(["some", "string"] as String[], ["array"] as String[], file("test"))
                    execute(["some", "string"] as String[], ["array"], file("test"))
    
                    execute(["some", "string"])
                    execute(["some", "string"], ["array"] as String[], file("test"))
                    execute(["some", "string"], ["array"], file("test"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt

                                ]
                            },
                            {
                                "type": "org.gradle.api.file.SourceDirectorySet",
                                "member": "Method org.gradle.api.file.SourceDirectorySet.setOutputDir(java.io.File)",
                                "acceptation": "Deprecated method removed",
                                "changes": [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/StartParamsValidatingActionExecutor.java

        }
    
        private static void validateIsFileAndExists(File file, String fileType) {
            if (!file.isFile()) {
                if (!file.exists()) {
                    throw new IllegalArgumentException(String.format("The specified %s '%s' does not exist.", fileType, file));
                }
                throw new IllegalArgumentException(String.format("The specified %s '%s' is not a file.", fileType, file));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/internal/scripts/DefaultScriptFileResolver.java

        }
    
        @Override
        public List<File> findScriptsIn(File dir) {
            File[] candidates = dir.listFiles();
            if (candidates == null || candidates.length == 0) {
                return emptyList();
            }
            List<File> found = new ArrayList<File>(candidates.length);
            for (File candidate : candidates) {
                if (candidate.isFile() && hasScriptExtension(candidate)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedProjectScopeServices.java

    import org.gradle.api.internal.file.DefaultProjectLayout;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.file.FileFactory;
    import org.gradle.api.internal.file.FileLookup;
    import org.gradle.api.internal.file.FileOperations;
    import org.gradle.api.internal.file.FilePropertyFactory;
    import org.gradle.api.internal.file.FileResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top