Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 349 for connectat (0.29 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{104, "ECONNRESET", "connection reset by peer"},
    	{105, "ENOBUFS", "no buffer space available"},
    	{106, "EISCONN", "transport endpoint is already connected"},
    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      # E1023 04:03:58.150266    4840 reflector.go:205] k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:129:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/cds_test.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestCDS(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	ads := s.ConnectADS().WithType(v3.ClusterType)
    	ads.RequestResponseAck(t, nil)
    }
    
    func TestSAN(t *testing.T) {
    	labels := map[string]string{"app": "test"}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java

                    } else {
                        bucketName = StringUtil.EMPTY;
                    }
                    objectName = StringUtil.EMPTY;
                }
            }
    
            @Override
            public void connect() throws IOException {
                final String endpoint = System.getenv().get("STORAGE_ENDPOINT");
                final String accessKey = System.getenv().get("STORAGE_ACCESS_KEY");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            then:
            configurationCache.assertStateLoaded()
            result.assertTasksSkipped(":producer", ":transformer")
        }
    
        def "task input property can consume the mapped output of another task connected via project property with #description"() {
            taskTypeWithInputFileProperty()
            taskTypeWithIntInputProperty()
    
            buildFile << """
                def output = objects.property(Integer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/SocksProxy.kt

            fromSink.writeByte(ADDRESS_TYPE_IPV4)
            fromSink.write(localAddress)
            fromSink.writeShort(toSocket.localPort)
            fromSink.emit()
            logger.log(Level.INFO, "SocksProxy connected $fromAddress to $toAddress")
    
            // Copy sources to sinks in both directions.
            val toSource = toSocket.source().buffer()
            val toSink = toSocket.sink().buffer()
            openSockets.add(toSocket)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/database/sql/example_service_test.go

    package sql_test
    
    import (
    	"context"
    	"database/sql"
    	"encoding/json"
    	"fmt"
    	"io"
    	"log"
    	"net/http"
    	"time"
    )
    
    func Example_openDBService() {
    	// Opening a driver typically will not attempt to connect to the database.
    	db, err := sql.Open("driver-name", "database=test1")
    	if err != nil {
    		// This will not be a connection error, but a DSN parse error or
    		// another initialization error.
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:21:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/net/net_fake.go

    	}
    }
    
    type fakeNetFD struct {
    	fd           *netFD
    	assignedPort int // 0 if no port has been assigned for this socket
    
    	queue         *packetQueue // incoming packets
    	peer          *netFD       // connected peer (for outgoing packets); nil for listeners and PacketConns
    	readDeadline  atomic.Pointer[deadlineTimer]
    	writeDeadline atomic.Pointer[deadlineTimer]
    
    	fakeAddr fakeSockAddr // cached fakeSockAddr equivalent of fd.laddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            when:
            buildSucceeds()
    
            then:
            //suspected address was removed from the registry
            // so we should the client does not attempt to connect to it again
            !output.contains(DaemonMessages.REMOVING_DAEMON_ADDRESS_ON_FAILURE)
        }
    
        @Issue("GRADLE-2444")
        def "stop behaves if the registry contains connectable port without daemon on the other end"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessor.java

            });
            connection.addIncoming(TestResultProcessor.class, resultProcessor);
            RemoteTestClassProcessor remoteProcessor = connection.addOutgoing(RemoteTestClassProcessor.class);
            connection.connect();
            remoteProcessor.startProcessing();
            return remoteProcessor;
        }
    
        @Override
        public void stop() {
            try {
                if (remoteProcessor != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top