Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for Established (0.91 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    				{
    					Type:               Established,
    					Status:             ConditionTrue,
    					Reason:             "Accepted",
    					Message:            "the initial names have been accepted",
    					LastTransitionTime: metav1.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    			},
    			newCondition: CustomResourceDefinitionCondition{
    				Type:               Established,
    				Status:             ConditionFalse,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    				Reason:             "Neverapiextensionsv1.Established",
    				Message:            "resource was never apiextensionsv1.Established",
    				LastTransitionTime: metav1.Date(2018, 2, 1, 0, 0, 0, 0, time.UTC),
    			},
    			expectedcrdCondition: []apiextensionsv1.CustomResourceDefinitionCondition{
    				{
    					Type:               apiextensionsv1.Established,
    					Status:             apiextensionsv1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_canonicalization_helper.h

        return success(found);
      }
    };
    
    // Helper function to create TF op while copying all underscore attributes from
    // another TF op.
    // TODO(jpienaar): This is a workaround until behavior is established.
    template <typename OpTy, typename... Args>
    OpTy CreateTfOp(RewriterBase &b, Operation *op, Args &&...args) {
      auto ret = b.create<OpTy>(op->getLoc(), std::forward<Args>(args)...);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 12 21:57:12 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top