Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 859 for bindTo (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/cgo/gcc_libinit.c

    static pthread_cond_t runtime_init_cond = PTHREAD_COND_INITIALIZER;
    static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
    static int runtime_init_done;
    
    // pthread_g is a pthread specific key, for storing the g that binded to the C thread.
    // The registered pthread_key_destructor will dropm, when the pthread-specified value g is not NULL,
    // while a C thread is exiting.
    static pthread_key_t pthread_g;
    static void pthread_key_destructor(void* g);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

        public List<? extends UnboundRule> process() {
            List<UnboundRule> unboundRules = new ArrayList<UnboundRule>();
            for (RuleBinder binder : binders) {
                UnboundRule.Builder builder = UnboundRule.descriptor(String.valueOf(binder.getDescriptor()));
    
                ModelBinding subjectBinding = binder.getSubjectBinding();
                // Only report subject binding if target state is after node creation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            )
        }
    
        def "creates unbound rules for multiple binders"() {
            binder {
                descriptor("firstRule")
                subjectReference("path.subject.first", String)
            }
            binder {
                descriptor("secondRule")
                subjectReference("path.subject.second", Number)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def binDir = jdkHome.createDir("bin")
            binDir.createFile(OperatingSystem.current().getExecutableName("java"))
            return jdkHome
        }
    
        private TestFile createJreInstallation(String version) {
            def jdkHome = temporaryFolder.createDir("jdk-$version")
            def jreHome = jdkHome.file("jre").createDir()
            def binDir = jreHome.createDir("bin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top