Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for kindid (0.12 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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

                LOGGER.debug("Found {} {} at {}", getDisplayName(), version.toString(), windowsKitDir);
                File binDir = new File(windowsKitDir, "bin/" + versionDir);
                File unversionedBinDir = new File(windowsKitDir, "bin");
                if (isValidComponentBinDir(binDir)) {
                    T component = newComponent(windowsKitDir, binDir, version, discoveryType);
                    found.add(component);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/migrate.go

    		etcdctlVersioned := fmt.Sprintf("etcdctl-%s", opts.targetVersion)
    		if err := copyFile(filepath.Join(opts.binDir, etcdVersioned), filepath.Join(opts.binDir, "etcd")); err != nil {
    			klog.Fatalf("Failed to copy %s: %v", etcdVersioned, err)
    		}
    		if err := copyFile(filepath.Join(opts.binDir, etcdctlVersioned), filepath.Join(opts.binDir, "etcdctl")); err != nil {
    			klog.Fatalf("Failed to copy %s: %v", etcdctlVersioned, err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can configure tool executables"() {
            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitSdkInstall.java

    public class WindowsKitSdkInstall extends WindowsKitInstall implements WindowsSdkInstall {
        private final File binDir;
        private final SystemInfo systemInfo;
    
        public WindowsKitSdkInstall(File baseDir, VersionNumber version, File binDir, String name, SystemInfo systemInfo) {
            super(baseDir, version, name);
            this.binDir = binDir;
            this.systemInfo = systemInfo;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureSpecificVisualCpp.java

        public File getBinDir() {
            return binDir;
        }
    
        @Override
        public List<File> getPath() {
            return paths;
        }
    
        @Override
        public File getCompilerExecutable() {
            return new File(binDir, COMPILER_FILENAME);
        }
    
        @Override
        public File getLinkerExecutable() {
            return new File(binDir, LINKER_FILENAME);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pkg/config/schema/kind/kind.go

    // distributed under the License is distributed on an "AS IS" BASIS,
    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kind
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 30 21:13:14 UTC 2022
    - 616 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

                )
            }.toList()
    
        if (binDir != null) {
            writeFile(
                moduleFileFor(binDir, moduleName),
                moduleMetadataBytesFor(emittedClassNames)
            )
        }
    
        return emittedClassNames
    }
    
    
    internal
    fun IO.makeAccessorOutputDirs(srcDir: File, binDir: File?, packagePath: String) = io {
        srcDir.resolve(packagePath).mkdirs()
        binDir?.apply {
            resolve(packagePath).mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocator.java

        }
    
        @Override
        String getDisplayName() {
            return DISPLAY_NAME;
        }
    
        @Override
        boolean isValidComponentBinDir(File binDir) {
            for (String platform : PLATFORMS) {
                if (!new File(binDir, platform + "/" + RC_EXE).exists()) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top