Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 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. 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/AccessorsClassPath.kt

        classPath: ClassPath,
        srcDir: File,
        binDir: File?,
        packageName: String = kotlinDslPackageName,
        format: AccessorFormat = AccessorFormats.default
    ) {
        val availableSchema = availableProjectSchemaFor(projectSchema, classPath)
        emitAccessorsFor(
            availableSchema,
            srcDir,
            binDir,
            OutputPackage(packageName),
            format
        )
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

                '/usr/local/include'
            ]
            def mapped = [
                'C:\\cygwin\\usr\\include',
                'C:\\cygwin\\usr\\local\\include'
            ]
            def binDir = tmpDir.createDir('bin')
            def cygpath = binDir.createFile(OperatingSystem.current().getExecutableName('cygpath'))
    
            expect:
            runsCompiler(gccCygwin64, gccVerboseOutput('7.3', includes))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            File javaHome = new File(temporaryFolder, jdk).tap { mkdirs() }
            if (!jre) {
                def binDir = new File(javaHome, "bin")
                if (binDir.mkdir()) {
                    File javac = new File(binDir, OperatingSystem.current().getExecutableName('javac'))
                    javac << 'dummy'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. cni/pkg/install/install.go

    	// we shouldn't fire events for binaries that are not ours.
    	var binPaths []string
    	for _, bindir := range in.cfg.CNIBinTargetDirs {
    		for _, binary := range installedBinFiles.UnsortedList() {
    			binPaths = append(binPaths, filepath.Join(bindir, binary))
    		}
    	}
    	targets := append(
    		binPaths,
    		in.cfg.MountedCNINetDir,
    		in.cfg.K8sServiceAccountPath,
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    		}
    	}
    
    	// If a bindAddress is passed, override the primary IP
    	bindIP := netutils.ParseIPSloppy(bindAddress)
    	if bindIP != nil && !bindIP.IsUnspecified() {
    		if netutils.IsIPv4(bindIP) {
    			primaryFamily = v1.IPv4Protocol
    		} else {
    			primaryFamily = v1.IPv6Protocol
    		}
    		nodeIPs[primaryFamily] = bindIP
    	}
    
    	if nodeIPs[primaryFamily].IsLoopback() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. docs/tr/docs/async.md

    Aşkınla beraber 😍 dışarı hamburger yemeye çıktınız 🍔, kasiyer 💁 öndeki insanlardan sipariş alırken siz sıraya girdiniz.
    
    Sıra sizde ve sen aşkın 😍 ve kendin için 2 çılgın hamburger 🍔 söylüyorsun.
    
    Ödemeyi yaptın 💸.
    
    Kasiyer 💁 mutfakdaki aşçıya 👨‍🍳 hamburgerleri 🍔 hazırlaması gerektiğini söyler ve aşçı bunu bilir (o an önceki müşterilerin siparişlerini hazırlıyor olsa bile).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. cni/test/install_cni.go

    			CNIEventAddress:       cniEventAddr,
    			ZtunnelUDSAddress:     ztunnelAddr,
    			MountedCNINetDir:      tempCNIConfDir,
    			CNIBinSourceDir:       filepath.Join(env.IstioSrc, "cni/test/testdata/bindir"),
    			CNIBinTargetDirs:      []string{tempCNIBinDir},
    			K8sServicePort:        "443",
    			K8sServiceHost:        "10.110.0.1",
    			MonitoringPort:        0,
    			LogUDSAddress:         "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    			env = append(env, key+"="+val)
    		}
    	}
    
    	return env, nil
    }
    
    var extraEnvKeys = []string{
    	"SYSTEMROOT",         // must be preserved on Windows to find DLLs; golang.org/issue/25210
    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top