Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,027 for Bind (0.06 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

                bind(IsolatedArrayCodec)
                bind(IsolatedSetCodec)
                bind(IsolatedListCodec)
                bind(IsolatedMapCodec)
                bind(MapEntrySnapshotCodec)
                bind(IsolatedEnumValueSnapshotCodec)
                bind(StringValueSnapshotCodec)
                bind(IntegerValueSnapshotCodec)
                bind(FileValueSnapshotCodec)
                bind(BooleanValueSnapshotCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

            port:
              number: 81
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/bind-all.default,HTTPRoute/bind-cross-namespace.group-namespace1
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: bind-all-2-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    func gatewayRDSRouteName(server *networking.Server, portNumber uint32, cfg config.Config) string {
    	p := protocol.Parse(server.Port.Protocol)
    	bind := ""
    	if server.Bind != "" {
    		bind = "." + server.Bind
    	}
    	if p.IsHTTP() {
    		return "http" + "." + strconv.Itoa(int(portNumber)) + bind // Format: http.%d.%s
    	}
    
    	if p == protocol.HTTPS && !gateway.IsPassThroughServer(server) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    Binding<Object> bind = ReflectionUtils.bindingFromMethod(method).scope(scope);
                    for (Type t : Types.getAllSuperTypes(returnType)) {
                        if (types == null || types.contains(Types.getRawType(t))) {
                            bind(Key.ofType(t, qualifier), bind);
                            if (qualifier != null) {
                                bind(Key.ofType(t), bind);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pkg/volume/util/volumepathhandler/volume_path_handler.go

    		// TODO: Need to check if this device file is actually the expected bind mount
    		if file.Mode()&os.ModeDevice == os.ModeDevice {
    			klog.Warningf("Warning: Map skipped because bind mount already exist on the path: %v", linkPath)
    			return nil
    		}
    
    		klog.Warningf("Warning: file %s is already exist but not mounted, skip creating file", linkPath)
    	}
    
    	// Bind mount file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. 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)
  7. cmd/kube-proxy/app/server_test.go

    		clusterCIDR: "1.2.3.0/24"
    		configSyncPeriod: 15s
    		kind: KubeProxyConfiguration`
    	*/
    
    	testCases := []struct {
    		name    string
    		config  string
    		expErr  string
    		checkFn func(err error) bool
    	}{
    		{
    			name:   "Decode error test",
    			config: "Twas bryllyg, and ye slythy toves",
    			expErr: "could not find expected ':'",
    		},
    		{
    			name:   "Bad config type test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	// telemetry.
    	port model.ServiceInstancePort
    	// bind determines where (IP) this filter chain should bind. Note: typically we just end up using
    	// 'virtual' listener and do not literally bind to port; in these cases this just impacts naming
    	// and telemetry.
    	bind string
    
    	// extraBind is string slice and each element is similar with bind address and support multiple addresses for 'virtual' listener
    	extraBind []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    a,b,c){"use strict";var d=0;a.fn.validateOnBlur=function(b,c){var d=this,e=this.find("*[data-validation]");return e.each(function(){var e=a(this);if(e.is("[type=radio]")){var f=d.find('[type=radio][name="'+e.attr("name")+'"]');f.bind("blur.validation",function(){e.validateInputOnBlur(b,c,!0,"blur")}),c.validateCheckboxRadioOnClick&&f.bind("click.validation",function(){e.validateInputOnBlur(b,c,!0,"click")})}}),e.bind("blur.validation",function(){a(this).validateInputOnBlur(b,c,!0,"blur")}),c.val...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  10. pkg/volume/util/subpath/subpath_linux.go

    			}
    		}
    	}()
    
    	kubeletPid := os.Getpid()
    	mountSource := fmt.Sprintf("/proc/%d/fd/%v", kubeletPid, fd)
    
    	// Do the bind mount
    	options := []string{"bind"}
    	mountFlags := []string{"--no-canonicalize"}
    	klog.V(5).Infof("bind mounting %q at %q", mountSource, bindPathTarget)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
Back to top