Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for Established (0.44 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedObjectConnectionTest.groovy

            then:
            def e = thrown(GradleException)
            e.message == "Cannot add incoming message handler after connection established."
    
            cleanup:
            connection?.stop()
            connectionBuilder?.stop()
        }
    
        def "cannot create outgoing message transmitter on established connections"() {
            def connection = new TestConnection()
    
            given:
            connectCompletion.create(_) >> connection
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    		apiextensionshelpers.IsCRDConditionTrue(cachedCRD, apiextensionsv1.Established) {
    		return nil
    	}
    
    	crd := cachedCRD.DeepCopy()
    	establishedCondition := apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Established,
    		Status:  apiextensionsv1.ConditionTrue,
    		Reason:  "InitialNamesAccepted",
    		Message: "the initial names have been accepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/ConnectionListener.kt

      open fun connectStart(
        route: Route,
        call: Call,
      ) {}
    
      /**
       * Invoked when a connection fails to be established.
       */
      open fun connectFailed(
        route: Route,
        call: Call,
        failure: IOException,
      ) {}
    
      /**
       * Invoked as soon as a connection is successfully established.
       */
      open fun connectEnd(
        connection: Connection,
        route: Route,
        call: Call,
      ) {}
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    				COMMIT
    				*nat
    				:KUBE-SERVICES - [0:0]
    				:KUBE-NODEPORTS - [0:0]
    				:KUBE-POSTROUTING - [0:0]
    				:KUBE-MARK-MASQ - [0:0]
    				:KUBE-SVC-XPGD46QRK7WJZT7O - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. releasenotes/notes/cncf-ebpf-enable.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 47257
    releaseNotes:
      - |
        **Added** eBPF redirection support for ambient after CNCF established guidance around dual-licensed eBPF bytecode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 22:35:41 UTC 2023
    - 292 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/inbound-ports-tproxy.golden

    iptables -t mangle -A PREROUTING -p tcp -j ISTIO_INBOUND
    iptables -t mangle -A ISTIO_INBOUND -p tcp --dport 32000 -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    iptables -t mangle -A ISTIO_INBOUND -p tcp --dport 32000 -j ISTIO_TPROXY
    iptables -t mangle -A ISTIO_INBOUND -p tcp --dport 31000 -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT
    iptables -t mangle -A ISTIO_INBOUND -p tcp --dport 31000 -j ISTIO_TPROXY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -A ISTIO_PRERT -p tcp -m tcp --dport 15008 -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15008 --tproxy-mark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15006 --tproxy-mark 0x111/0xfff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingClient.java

     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingClient {
        /**
         * Creates a connection to the given address. Blocks until the connection has been established.
         *
         * @param address The address to connect to.
         */
        ObjectConnection getConnection(Address address);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	// which we had if we set Established to true here.
    	establishedCondition := apiextensionsv1.CustomResourceDefinitionCondition{
    		Type:    apiextensionsv1.Established,
    		Status:  apiextensionsv1.ConditionFalse,
    		Reason:  "NotAccepted",
    		Message: "not all names are accepted",
    	}
    	if old := apiextensionshelpers.FindCRDCondition(in, apiextensionsv1.Established); old != nil {
    		establishedCondition = *old
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    				case watch.Added, watch.Modified, watch.Deleted:
    					// all expected
    				default:
    					t.Errorf("unexpected watch event: %#v", event)
    				}
    			}
    		}(i)
    	}
    
    	// Let all the established watches soak request loops soak
    	time.Sleep(5 * time.Second)
    
    	// Update CRD and ensure that all watches are gracefully terminated.
    	updateCRD()
    
    	drained := make(chan struct{})
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top