Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for baseData (0.26 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. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/ide/visualstudio/fixtures/ProjectFile.groovy

            assert sourceFiles == ['build.gradle'] + sourceFiles(component.sourceFiles, basePath)
            assert headerFiles == sourceFiles(component.headerFiles, basePath)
        }
    
        void assertHasComponentSources(CppSourceElement component, String basePath) {
            assert sourceFiles == ['build.gradle'] + sourceFiles(component.sources.files, basePath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureDescriptorBuilder.java

        }
    
        File getBinPath(File basePath) {
            return new File(basePath, binPath);
        }
    
        File getLibPath(File basePath) {
            return new File(basePath, libPath);
        }
    
        File getCompilerPath(File basePath) {
            return new File(getBinPath(basePath), COMPILER_FILENAME);
        }
    
        File getCrossCompilePath(File basePath) {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

        private VisualCppInstall buildVisualCppInstall(String name, File vsPath, File basePath, VersionNumber version, Compatibility compatibility) {
            switch (compatibility) {
                case LEGACY:
                    return buildLegacyVisualCppInstall(name, vsPath, basePath, version);
                case VS2017_OR_LATER:
                    return buildVisualCppInstall(name, vsPath, basePath, version);
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/ResolvedPattern.java

            // get rid of the ivy [] token, as [ ] are not valid URI characters
            int pos = rawPattern.indexOf('[');
            String basePath = pos < 0 ? rawPattern : rawPattern.substring(0, pos);
            this.baseUri = fileResolver.resolveUri(basePath);
            this.pattern = pos < 0 ? "" : rawPattern.substring(pos);
            scheme = baseUri.getScheme().toLowerCase();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top