Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 126 for connect0 (0.18 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                return false;
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.net.URLConnection#connect()
         */
        @Override
        public void connect () throws IOException {
            try ( SmbTreeHandle th = ensureTreeConnected() ) {}
        }
    
    
        /**
         * 
         * @return a tree handle
         * @throws CIFSException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. cmd/iam.go

    // whenever the parent user parses validly as a DN.
    func (sys *IAMSys) NormalizeLDAPAccessKeypairs(ctx context.Context, accessKeyMap map[string]madmin.SRSvcAccCreate,
    ) (err error) {
    	conn, err := sys.LDAPConfig.LDAP.Connect()
    	if err != nil {
    		return err
    	}
    	defer conn.Close()
    
    	// Bind to the lookup user account
    	if err = sys.LDAPConfig.LDAP.LookupBind(conn); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    const (
    	OperationAll OperationType = v1.OperationAll
    	Create       OperationType = v1.Create
    	Update       OperationType = v1.Update
    	Delete       OperationType = v1.Delete
    	Connect      OperationType = v1.Connect
    )
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    type WebhookClientConfig struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall_syscall(libc_connect_trampoline_addr, uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_connect_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_connect connect "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall_syscall(libc_connect_trampoline_addr, uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_connect_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_connect connect "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    	sendKeyUpdate bool
    }
    
    var serverCommand = []string{"openssl", "s_server", "-no_ticket", "-num_tickets", "0"}
    
    // connFromCommand starts the reference server process, connects to it and
    // returns a recordingConn for the connection. The stdin return value is an
    // opensslInput for the stdin of the child process. It must be closed before
    // Waiting for child.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <pgp value="8446B9E902A3F3DDEE711FDB8E26FF248BC7AEAD"/>
             </artifact>
          </component>
          <component group="mysql" name="mysql-connector-java" version="8.0.17">
             <artifact name="mysql-connector-java-8.0.17.jar">
                <pgp value="A4A9406876FCBD3C456770C88C718D3B5072E1F5"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            global_jit_level_(global_jit_level),
            cpu_global_jit_(cpu_global_jit),
            cluster_name_prefix_(cluster_name_prefix) {}
    
      Status Run();
    
     private:
      // Represents a "cluster" or a connected subgraph of a TensorFlow graph.
      class Cluster {
       public:
        // Constructs a trivial cluster representing a single TF node.
        Cluster(int tf_graph_node_id, int effective_cluster_size,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    				Spec: v1.ServiceSpec{
    					ClusterIP: v1.ClusterIPNone,
    				},
    			},
    			expectedEndpointFamily: ipv6,
    		},
    		{
    			name:       "v6 headless service, in a dual stack cluster (connected to a new api-server)",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP:  v1.ClusterIPNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	string(admissionregistration.OperationAll),
    	string(admissionregistration.Create),
    	string(admissionregistration.Update),
    	string(admissionregistration.Delete),
    	string(admissionregistration.Connect),
    )
    
    var supportedReinvocationPolicies = sets.NewString(
    	string(admissionregistration.NeverReinvocationPolicy),
    	string(admissionregistration.IfNeededReinvocationPolicy),
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top