Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for OnConnect (0.28 sec)

  1. pilot/pkg/autoregistration/controller_test.go

    		// simply make sure the entry exists after connecting
    		p1conn1 = makeConn(p, time.Now())
    		c1.OnConnect(p1conn1)
    		checkEntryOrFail(t, store, wgA, p, n, c1.instanceID)
    	})
    	t.Run("multinetwork same ip", func(t *testing.T) {
    		// make sure we don't overrwrite a similar entry for a different network
    		p2conn1 = makeConn(p2, time.Now())
    		c2.OnConnect(p2conn1)
    		checkEntryOrFail(t, store, wgA, p, n, c1.instanceID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

            final DefaultWorkerProcess workerProcess = new DefaultWorkerProcess(connectTimeoutSeconds, TimeUnit.SECONDS, memoryStatus);
            ConnectionAcceptor acceptor = server.accept(connection ->
                workerProcess.onConnect(connection, () -> {
                    DefaultWorkerLoggingProtocol defaultWorkerLoggingProtocol = new DefaultWorkerLoggingProtocol(outputEventListener);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                } else if (entry.getValue().length == 1) {
                    curlRequest.param(entry.getKey(), entry.getValue()[0]);
                }
            });
            try (final CurlResponse curlResponse = curlRequest.onConnect((req, con) -> {
                con.setDoOutput(true);
                if (httpMethod != Method.GET && request.getContentLength() > 2) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/controller.go

    	c.Annotations[annotation.IoIstioWorkloadController.Name] = controller
    	c.Annotations[annotation.IoIstioConnectedAt.Name] = conTime.Format(timeFormat)
    	delete(c.Annotations, annotation.IoIstioDisconnectedAt.Name)
    }
    
    // OnConnect determines whether a connecting proxy represents a non-Kubernetes
    // workload and, if that's the case, initiates special processing required for that type
    // of workloads, such as auto-registration, health status updates, etc.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    	proxy := con.proxy
    	// this should be done before we look for service instances, but after we load metadata
    	// TODO fix check in kubecontroller treat echo VMs like there isn't a pod
    	if err := s.WorkloadEntryController.OnConnect(con); err != nil {
    		return err
    	}
    	s.computeProxyState(proxy, nil)
    	// Discover supported IP Versions of proxy so that appropriate config can be delivered.
    	proxy.DiscoverIPMode()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top