Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for kindid (0.22 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    	return out[:size:size]
    }
    
    func (tr *Trace) STWReason(kindID uint64) STWReason {
    	if tr.Version < 21 {
    		if kindID == 0 || kindID == 1 {
    			return STWReason(kindID + 1)
    		} else {
    			return STWUnknown
    		}
    	} else if tr.Version == 21 {
    		if kindID < NumSTWReasons {
    			return STWReason(kindID)
    		} else {
    			return STWUnknown
    		}
    	} else {
    		return STWUnknown
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def binDir = file('fake-bin')
    
            then:
            def path
            if (OperatingSystem.current().windows) {
                path = ''
            } else {
                // Set up a fake bin directory, containing the things that the script needs, minus any java that might be in /usr/bin
                links.each { linkToBinary(it, binDir) }
                path = binDir.absolutePath
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    
    internal
    fun IO.buildPluginDependencySpecAccessorsFor(
        pluginDescriptorsClassPath: ClassPath,
        srcDir: File,
        binDir: File
    ) {
        makeAccessorOutputDirs(srcDir, binDir, kotlinDslPackagePath)
    
        val pluginTrees = pluginTreesFrom(pluginDescriptorsClassPath)
    
        val baseFileName = "$kotlinDslPackagePath/PluginDependencySpecAccessors"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectAccessorsClassPathTest.kt

            val srcDir = newFolder("src")
            val binDir = newFolder("bin")
    
            withClassLoaderFor(binDir) {
                // when:
                buildAccessorsFromSourceFor(
                    schema,
                    testRuntimeClassPath,
                    srcDir,
                    binDir
                )
    
                val binaryAccessorsDir = File(binDir, "org/gradle/kotlin/dsl")
    
                // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

                try {
                    File kitDir = FileUtils.canonicalize(new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, baseKey + REGISTRY_ROOTPATH_KIT, keys[i])));
                    if (isWindowsSdk(kitDir)) {
                        LOGGER.debug("Found Windows Kit {} at {}", versions[i], kitDir);
                        addSdk(kitDir, versions[i], NAME_KIT + " " + versions[i]);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

    
    internal
    fun IO.buildVersionCatalogAccessorsFor(
        versionCatalogs: List<VersionCatalogAccessor>,
        srcDir: File,
        binDir: File
    ) {
        makeAccessorOutputDirs(srcDir, binDir, kotlinDslPackagePath)
    
        val baseFileName = "$kotlinDslPackagePath/VersionCatalogAccessors"
        val sourceFile = srcDir.resolve("$baseFileName.kt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

        }
    
        def "uses windows SDK using specified install dir"() {
            def dir1 = kitDir("sdk1", "10.0.10240.0")
            def dir2 = kitDir("sdk2", "10.0.10150.0")
            def dir3 = kitDir("sdk3", "10.0.10500.0")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

        }
    
        public static class InstalledSwiftc extends InstalledToolChain {
            private final File binDir;
            private final VersionNumber compilerVersion;
    
            public InstalledSwiftc(File binDir, VersionNumber compilerVersion) {
                super(ToolFamily.SWIFTC, compilerVersion);
                this.binDir = binDir;
                this.compilerVersion = compilerVersion;
            }
    
            public File tool(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            result.component.baseDir == dir2
        }
    
        def "uses windows kit if version is higher than windows SDK"() {
            def dir1 = sdkDir("sdk1")
            def dir2 = kitDir("sdk2")
            def dir3 = kitDir("sdk3")
    
            given:
            operatingSystem.findInPath(_) >> null
            windowsRegistry.getSubkeys(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, /SOFTWARE\Microsoft\SDKs\Windows/) >> ["v1"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            val binDir = newFolder("bin")
            compileToDirectory(
                binDir,
                KotlinCompilerOptions(),
                "test",
                listOf(sourceFile),
                loggerFor<KotlinApiClassExtractorTest>(),
                emptyList()
            )
    
            return ClassFixture(scriptBody, binDir.toPath().resolve(scriptClass).toFile().readBytes())
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top