Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 7,636 for FILE (0.19 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        }
    
        void "can configure settings file"() {
            StartParameter parameter = new StartParameter()
            File file = new File('some dir/settings file')
    
            when:
            parameter.settingsFile = file
    
            then:
            parameter.currentDir == file.canonicalFile.parentFile
            parameter.settingsFile == file.canonicalFile
            assertThat(parameter, isSerializable())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

    import org.gradle.api.internal.file.collections.FileCollectionAdapter;
    import org.gradle.api.internal.file.collections.FileCollectionObservationListener;
    import org.gradle.api.internal.file.collections.FileTreeAdapter;
    import org.gradle.api.internal.file.collections.GeneratedSingletonFileTree;
    import org.gradle.api.internal.file.collections.MinimalFileSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        private File currentDir;
        private File projectDir;
        private Map<String, String> projectProperties = new HashMap<>();
        private Map<String, String> systemPropertiesArgs = new HashMap<>();
        private File gradleUserHomeDir;
        protected File gradleHomeDir;
        private File settingsFile;
        private File buildFile;
        private List<File> initScripts = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

    import org.gradle.api.internal.file.AbstractFileCollection
    import org.gradle.api.internal.file.FileCollectionBackedFileTree
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.internal.file.FileCollectionStructureVisitor
    import org.gradle.api.internal.file.FileOperations
    import org.gradle.api.internal.file.FileTreeInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/tests/go122-annotations-stress.test

    	pc=4803589 func=114 file=113 line=45
    Stack id=24 nframes=7
    	pc=4634510 func=146 file=116 line=223
    	pc=4634311 func=117 file=118 line=240
    	pc=4633765 func=119 file=118 line=216
    	pc=4633083 func=120 file=118 line=131
    	pc=4764601 func=121 file=122 line=152
    	pc=4765335 func=123 file=122 line=238
    	pc=4804612 func=124 file=113 line=70
    Stack id=43 nframes=2
    	pc=4804022 func=112 file=113 line=67
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/trace/testdata/go122.test

    	pc=5048282 func=43 file=42 line=70
    	pc=5021687 func=44 file=45 line=154
    	pc=5057739 func=46 file=47 line=85
    	pc=5057380 func=48 file=47 line=75
    	pc=5057381 func=49 file=47 line=71
    	pc=4965884 func=50 file=51 line=651
    	pc=4964173 func=52 file=51 line=616
    	pc=4961811 func=53 file=51 line=517
    	pc=4960409 func=54 file=51 line=508
    	pc=4958646 func=55 file=51 line=434
    	pc=4958647 func=56 file=51 line=401
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/coverage/cfile/emit.go

    type emitState struct {
    	mfname string   // path of final meta-data output file
    	mftmp  string   // path to meta-data temp file (if needed)
    	mf     *os.File // open os.File for meta-data temp file
    	cfname string   // path of final counter data file
    	cftmp  string   // path to counter data temp file
    	cf     *os.File // open os.File for counter data file
    	outdir string   // output directory
    
    	// List of meta-data symbols obtained from the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top