Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 387 for connectat (0.15 sec)

  1. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

        }
    
        public void test_getArtifactFromFileName3() {
            Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.UNKNOWN, "mysql-connector-java-8.0.17.jar");
            assertEquals("mysql-connector-java", artifact.getName());
            assertEquals("8.0.17", artifact.getVersion());
        }
    
        public void test_loadYaml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/net/tcpsock_posix.go

    	}
    	return newTCPConn(fd, sd.Dialer.KeepAlive, sd.Dialer.KeepAliveConfig, testPreHookSetKeepAlive, testHookSetKeepAlive), nil
    }
    
    func selfConnect(fd *netFD, err error) bool {
    	// If the connect failed, we clearly didn't connect to ourselves.
    	if err != nil {
    		return false
    	}
    
    	// The socket constructor can return an fd with raddr nil under certain
    	// unknown conditions. The errors in the calls there to Getpeername
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

            return new DefaultCancellationTokenSource();
        }
    
        public static void close() {
            singletonRegistry.close();
        }
    
        /**
         * Resets the state of connector services. Meant to be used only for testing!
         */
        public static void reset() {
            singletonRegistry.close();
            singletonRegistry = new ConnectorServiceRegistry();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/connector/ResourceConnectorFactory.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.resource.connector;
    
    import org.gradle.authentication.Authentication;
    import org.gradle.internal.resource.transfer.ExternalResourceConnector;
    import org.gradle.internal.service.scopes.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

         * @param allowRemote If true, only allow connections from remote machines. If false, allow only from the local machine.
         * @return the address of the endpoint which the connector is listening on.
         */
        ConnectionAcceptor accept(Action<ConnectCompletion> action, boolean allowRemote);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    // exclusive use of a writable pipe connected to the child process's stdin.
    func Parent(pipe *os.File) {
    	writeSentinel(pipe)
    	// Ensure that we get pc=0x%x values in the traceback.
    	debug.SetTraceback("system")
    	setCrashOutput(pipe)
    }
    
    // Child runs the part of the crashmonitor that runs in the child process.
    // It expects its stdin to be connected via a pipe to the parent which has
    // run Parent.
    func Child() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/GraphConstants.java

              + "so it cannot be reused to connect the following nodes: %s.";
      static final String MULTIPLE_EDGES_CONNECTING =
          "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling "
              + "edgesConnecting() instead.";
      static final String PARALLEL_EDGES_NOT_ALLOWED =
          "Nodes %s and %s are already connected by a different edge. To construct a graph "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/async-sql-encode-databases.md

    So, you will be able to see it all in the interactive API docs.
    
    ## Connect and disconnect
    
    * Create your `FastAPI` application.
    * Create event handlers to connect and disconnect from the database.
    
    ```Python hl_lines="42  45-47  50-52"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    ## Read notes
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			routes = append(routes, route)
    		case "CONNECT":
    			for _, method := range connecter.ConnectMethods() {
    				connectProducedObject := storageMeta.ProducesObject(method)
    				if connectProducedObject == nil {
    					connectProducedObject = "string"
    				}
    				doc := "connect " + method + " requests to " + kind
    				if isSubresource {
    					doc = "connect " + method + " requests to " + subresource + " of " + kind
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    	ProtocolGRPC ProtocolType = "GRPC"
    	// Connect directly (skip konnectivity server)
    	ProtocolDirect ProtocolType = "Direct"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top