Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for connector (0.18 sec)

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

    import org.gradle.internal.extensions.core.add
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    import org.gradle.internal.resource.connector.ResourceConnectorFactory
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification
    import org.gradle.internal.resource.transfer.ExternalResourceConnector
    import org.gradle.internal.service.Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pom.xml

        <module>maven-toolchain-model</module>
        <module>maven-toolchain-builder</module>
        <module>maven-bom</module>
      </modules>
    
      <scm>
        <connection>scm:git:https://gitbox.apache.org/repos/asf/maven.git</connection>
        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven.git</developerConnection>
        <tag>maven-4.0.0-beta-3</tag>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    				<-o.blockConnect
    			}
    			c.connect()
    		}()
    	}
    	if debugPrint {
    		fmt.Println(c.Local, "->", c.Remote, "Should local connect:", c.shouldConnect(), "side:", c.side)
    	}
    	if debugReqs {
    		fmt.Println("Created connection", c.String())
    	}
    	return c
    }
    
    // Subroute returns a static subroute for the connection.
    func (c *Connection) Subroute(s string) *Subroute {
    	if c == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    	}
    	return new(net.Dialer)
    }
    
    // DialContext connects to the given network address and initiates a TLS
    // handshake, returning the resulting TLS connection.
    //
    // The provided Context must be non-nil. If the context expires before
    // the connection is complete, an error is returned. Once successfully
    // connected, any expiration of the context will not affect the
    // connection.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. internal/grid/muxserver.go

    	cancel             context.CancelFunc
    	inbound            chan []byte
    	parent             *Connection
    	sendMu             sync.Mutex
    	recvMu             sync.Mutex
    	outBlock           chan struct{}
    	clientPingInterval time.Duration
    }
    
    func newMuxStateless(ctx context.Context, msg message, c *Connection, handler StatelessHandler) *muxServer {
    	var cancel context.CancelFunc
    	ctx = setCaller(ctx, c.remote)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. internal/grid/manager.go

    	}
    }
    
    // AuthFn should provide an authentication string for the given aud.
    type AuthFn func(aud string) string
    
    // Connection will return the connection for the specified host.
    // If the host does not exist nil will be returned.
    func (m *Manager) Connection(host string) *Connection {
    	return m.targets[host]
    }
    
    // RegisterSingleHandler will register a stateless handler that serves
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	// address the connection arrived on.
    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    )
    
    // A conn represents the server side of an HTTP connection.
    type conn struct {
    	// server is the server on which the connection arrived.
    	// Immutable; never nil.
    	server *Server
    
    	// cancelCtx cancels the connection-level context.
    	cancelCtx context.CancelFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionRequest;
    import org.gradle.tooling.internal.provider.connection.BuildLogLevelMixIn;
    import org.gradle.tooling.internal.provider.connection.ProviderBuildResult;
    import org.gradle.tooling.internal.provider.connection.ProviderConnectionParameters;
    import org.gradle.tooling.internal.provider.connection.ProviderOperationParameters;
    import org.gradle.tooling.internal.provider.test.ProviderInternalTestExecutionRequest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

            def model = null
            result = toolingApiExecutor.runBuildWithToolingConnection { connection ->
                def output = new ByteArrayOutputStream()
                def error = new ByteArrayOutputStream()
                def args = executer.allArgs
                args.remove("--no-daemon")
    
                model = connection.model(type)
                    .forTasks(tasks)
                    .withArguments(args)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. samples/addons/jaeger.yaml

      selector:
        app: jaeger
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: jaeger-collector
      namespace: istio-system
      labels:
        app: jaeger
    spec:
      type: ClusterIP
      ports:
      - name: jaeger-collector-http
        port: 14268
        targetPort: 14268
        protocol: TCP
      - name: jaeger-collector-grpc
        port: 14250
        targetPort: 14250
        protocol: TCP
      - port: 9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top