Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subfolder1 (1.8 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

                includeBuild('subfolder1/module-b') { name = 'module-b-1' }
                includeBuild('subfolder2/module-b') { name = 'module-b-2' }
            """
            file('subfolder1/module-b').mkdirs()
            file('subfolder2/module-b').mkdirs()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                }
    
                File[] subfolders = location.listFiles(File::isDirectory);
                if (subfolders != null) {
                    for(File subfolder : subfolders) {
                        if (new File(subfolder, MAC_OS_JAVA_HOME_FOLDER).exists()) {
                            return new File(subfolder, MAC_OS_JAVA_HOME_FOLDER);
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. cmd/data-scanner.go

    	dataScannerCompactAtFolders      = dataScannerCompactAtChildren / 4 // Compact when this many subfolders in a single folder.
    	dataScannerForceCompactAtFolders = 250_000                          // Compact when this many subfolders in a single folder (even top level).
    	dataScannerStartDelay            = 1 * time.Minute                  // Time to wait on startup and between cycles.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	currentManifestPath := pathMgr.RealManifestPath(component)
    	// The new, upgraded manifest will be written here
    	newManifestPath := pathMgr.TempManifestPath(component)
    	// The old manifest will be moved here; into a subfolder of the temporary directory
    	// If a rollback is needed, these manifests will be put back to where they where initially
    	backupManifestPath := pathMgr.BackupManifestPath(component)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/archive/tar/writer_test.go

    			t.Fatalf("test %d, String() = %q, want %q", i, got, wantStr)
    		}
    	}
    }
    
    func TestWriterAddFS(t *testing.T) {
    	fsys := fstest.MapFS{
    		"file.go":              {Data: []byte("hello")},
    		"subfolder/another.go": {Data: []byte("world")},
    	}
    	var buf bytes.Buffer
    	tw := NewWriter(&buf)
    	if err := tw.AddFS(fsys); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top