Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 859 for bindTo (0.09 sec)

  1. 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)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultUcrtLocator.java

            return COMPONENT_NAME;
        }
    
        @Override
        String getDisplayName() {
            return DISPLAY_NAME;
        }
    
        @Override
        boolean isValidComponentBinDir(File binDir) {
            // Nothing special to check for UCRT
            return true;
        }
    
        @Override
        boolean isValidComponentIncludeDir(File includeDir) {
            return new File(includeDir, "io.h").exists();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/ExtensionConfigurationModule.java

        }
    
        @Override
        public void configure(Binder binder) {
            if (extension.getKey() != null) {
                XmlNode configuration = extension.getConfiguration();
                if (configuration == null) {
                    configuration = new XmlNodeImpl("configuration");
                }
                configuration = new Interpolator().transform(configuration);
    
                binder.bind(XmlNode.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:53:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/ldap.go

    	return searchRes, false, nil
    }
    
    // Bind - binds to ldap, searches LDAP and returns the distinguished name of the
    // user and the list of groups.
    func (l *Config) Bind(username, password string) (*xldap.DNSearchResult, []string, error) {
    	conn, err := l.LDAP.Connect()
    	if err != nil {
    		return nil, nil, err
    	}
    	defer conn.Close()
    
    	// Bind to the lookup user account
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            private final RuleBinder binder;
            private boolean bindInputs;
    
            public RunModelAction(ModelPath path, RuleBinder binder) {
                super(path);
                this.binder = binder;
            }
    
            @Override
            public String toString() {
                return "run action for " + binder.getSubjectBinding().getPredicate() + ", rule: " + binder.getDescriptor() + ", state: " + state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultbinder/default_binder.go

    // Name returns the name of the plugin.
    func (b DefaultBinder) Name() string {
    	return Name
    }
    
    // Bind binds pods to nodes using the k8s client.
    func (b DefaultBinder) Bind(ctx context.Context, state *framework.CycleState, p *v1.Pod, nodeName string) *framework.Status {
    	logger := klog.FromContext(ctx)
    	logger.V(3).Info("Attempting to bind pod to node", "pod", klog.KObj(p), "node", klog.KRef("", nodeName))
    	binding := &v1.Binding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf_test.go

    		},
    		{
    			name:             "bindnow-linkmode-internal",
    			args:             []string{"-ldflags", "-bindnow -linkmode=internal"},
    			prog:             progC,
    			mustHaveCGO:      true,
    			mustInternalLink: true,
    			wantDfBindNow:    true,
    			wantDf1Now:       true,
    		},
    		{
    			name:                 "bindnow-pie-linkmode-internal",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                            AnnotatedBindingBuilder<Object> binder = bind(itf);
                            if (key.getQualifier() instanceof String s) {
                                binder.annotatedWith(Names.named(s));
                            } else if (key.getQualifier() instanceof Annotation a) {
                                binder.annotatedWith(a);
                            }
                            binder.toProvider(() -> injector.getInstance(clazz));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		rst.writeLifetime(rst.base62Number())
    	} else if rst.str[0] == 'K' {
    		rst.advance(1)
    		rst.demangleConst()
    	} else {
    		rst.demangleType()
    	}
    }
    
    // binder parses an optional:
    //
    //	<binder> = "G" <base-62-number>
    func (rst *rustState) binder() {
    	if len(rst.str) < 1 || rst.str[0] != 'G' {
    		return
    	}
    	rst.advance(1)
    
    	binderLifetimes := rst.base62Number() + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_address.go

    // limitations under the License.
    
    package core
    
    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    )
    
    const (
    	// WildcardAddress binds to all IP addresses
    	WildcardAddress = "0.0.0.0"
    
    	// WildcardIPv6Address binds to all IPv6 addresses
    	WildcardIPv6Address = "::"
    
    	// LocalhostAddress for local binding
    	LocalhostAddress = "127.0.0.1"
    
    	// LocalhostIPv6Address for local binding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top