Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for baseData (0.17 sec)

  1. src/runtime/mgcmark.go

    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    	work.baseSpans = work.baseBSS + uint32(work.nBSSRoots)
    	work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	//
    	// nStackRoots == len(stackRoots), but we have nStackRoots for
    	// consistency.
    	nDataRoots, nBSSRoots, nSpanRoots, nStackRoots int
    
    	// Base indexes of each root type. Set by gcMarkRootPrepare.
    	baseData, baseBSS, baseSpans, baseStacks, baseEnd uint32
    
    	// stackRoots is a snapshot of all of the Gs that existed
    	// before the beginning of concurrent marking. The backing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

            }
    
            this.basePath = getProperty(startParameter, SYSPROP);
    
            if (this.basePath == null || basePath.equals(Boolean.FALSE.toString())) {
                this.logOutputStream = null;
                return;
            }
    
            try {
                File logFile = logFile(basePath);
                GFileUtils.mkdirs(logFile.getParentFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

        }
    
        def assertContainsVersioned(int version, String basePath) {
            assertContainsFile(toVersionedPath(version, basePath))
            this
        }
    
        def assertNotContainsVersioned(int version, String basePath) {
            assertNotContainsFile(toVersionedPath(version, basePath))
        }
    
        def assertVersionedContent(int version, String basePath, String content) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            }
            basePath = basePath.subList(prefixLen, basePath.size());
            targetPath = targetPath.subList(prefixLen, targetPath.size());
    
            for (int i = 0; i < basePath.size(); i++) {
                targetPath.add(0, "..");
            }
            if (targetPath.isEmpty()) {
                return ".";
            }
            return CollectionUtils.join(File.separator, targetPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubelet/runonce_test.go

    	podStartupLatencyTracker := kubeletutil.NewPodStartupLatencyTracker()
    	basePath, err := utiltesting.MkTmpdir("kubelet")
    	if err != nil {
    		t.Fatalf("can't make a temp rootdir %v", err)
    	}
    	defer os.RemoveAll(basePath)
    	kb := &Kubelet{
    		rootDirectory:    filepath.Clean(basePath),
    		podLogsDirectory: filepath.Join(basePath, "pod-logs"),
    		recorder:         &record.FakeRecorder{},
    		cadvisor:         cadvisor,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SourceFile.java

        public void writeToFile(TestFile file) {
            if (file.exists()) {
                file.write("");
            }
            file.write(content);
        }
    
        public String withPath(String basePath) {
            return Joiner.on('/').join(basePath, path, name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/path/filepath/path.go

    // joined to basepath with an intervening separator. That is,
    // [Join](basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
    // On success, the returned path will always be relative to basepath,
    // even if basepath and targpath share no elements.
    // An error is returned if targpath can't be made relative to basepath or if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

        }
    
        private void withOriginalSourceIn(String basePath) {
            sourceFileIn(basePath).tap {
                text = """
                    class Main {}
                """.stripIndent()
                makeOlder()
            }
        }
    
        private void withChangedSourceIn(String basePath) {
            sourceFileIn(basePath).text = """
                class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
            basePath = basePath.subList(prefixLen, basePath.size());
            targetPath = targetPath.subList(prefixLen, targetPath.size());
    
            for (int i = 0; i < basePath.size(); i++) {
                targetPath.add(0, "..");
            }
            if (targetPath.isEmpty()) {
                return ".";
            }
            return CollectionUtils.join(File.separator, targetPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top