Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 246 for 8002 (0.07 sec)

  1. docs_src/websockets/tutorial003_py39.py

            <ul id='messages'>
            </ul>
            <script>
                var client_id = Date.now()
                document.querySelector("#ws-id").textContent = client_id;
                var ws = new WebSocket(`ws://localhost:8000/ws/${client_id}`);
                ws.onmessage = function(event) {
                    var messages = document.getElementById('messages')
                    var message = document.createElement('li')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-out.yaml

                rules:
                - orRules:
                    rules:
                    - destinationPort: 80
                - notRule:
                    orRules:
                      rules:
                      - destinationPort: 8000
                - orRules:
                    rules:
                    - destinationIp:
                        addressPrefix: 10.10.10.10
                        prefixLen: 32
                - notRule:
                    orRules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

      http:
      - match:
        - uri:
            prefix: /weighted-100
        name: default.http.1
        route:
        - destination:
            host: foo-svc.default.svc.domain.suffix
            port:
              number: 8000
          headers:
            request:
              add:
                foo: bar
            response:
              add:
                response: header
      - match:
        - uri:
            prefix: /get
        name: default.http.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DurationTest.groovy

            0.123   | "0.123 ms"   | "0.123 ms"
            -12     | "-12 ms"     | "-12 ms"
            1000    | "1000 ms"    | "1 s"
            123456  | "123456 ms"  | "2.058 m"
            3607000 | "3607000 ms" | "1.002 h"
        }
    
        def "second durations have useful string formats"() {
            expect:
            Duration.seconds(millis).toString() == str
    
            where:
            millis    | str           | format
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. samples/ratelimit/local-rate-limit-service.yaml

                value:
                  stat_prefix: http_local_rate_limiter
        - applyTo: HTTP_ROUTE
          match:
            context: SIDECAR_INBOUND
            routeConfiguration:
              vhost:
                name: "inbound|http|8000"
                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              route:
                rate_limits:
                  - actions:
                      - remote_address: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/zero.yaml.golden

      http:
      - match:
        - uri:
            prefix: /weighted-100
        name: default.http.1
        route:
        - destination:
            host: foo-svc.default.svc.domain.suffix
            port:
              number: 8000
          headers:
            request:
              add:
                foo: bar
      - directResponse:
          status: 500
        match:
        - uri:
            prefix: /get
        name: default.http.0
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        %0, %c = tf_executor.island wraps "tf.Identity"(%arg0) {_tpu_replicate = "cluster", _XlaSharding = "\08\02\2a\08\08\01\1a\01\01\22\01\00\2a\08\08\01\1a\01\01\22\01\01"} : (tensor<i32>) -> tensor<i32>
        tf_executor.fetch %0 : tensor<i32>
      }
      return %0 : tensor<i32>
    }
    // -----
    
    //  Serialized string:
    //   "\08\02\2a\08\08\01\1a\01\01\22\01\00\2a\08\08\01\1a\01\01\22\01\01"
    //  Proto debug string:
    //    type: 	 TUPLE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tests/test_ws_router.py

            await websocket.close(1002, "foo")
    
        myapp = make_app(exception_handlers={CustomError: custom_handler})
        client = TestClient(myapp)
        with pytest.raises(WebSocketDisconnect) as e:
            with client.websocket_connect("/custom_error/"):
                pass  # pragma: no cover
        assert e.value.code == 1002
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 19:08:14 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager_linux_test.go

    	ephemeralStorageFromCapacity := int64(2000)
    	ephemeralStorageFromCadvisor := int64(8000)
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    	mockCtrlError := gomock.NewController(t)
    	defer mockCtrlError.Finish()
    
    	mockCadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity: 8000,
    	}
    	mockCadvisor.EXPECT().RootFsInfo().Return(rootfs, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/TaskExecutionStatisticsReporterTest.groovy

            where:
            executed | fromCache | upToDate | expected
            2        | 0         | 0        | "2 actionable tasks: 2 executed"
            2        | 1         | 0        | "3 actionable tasks: 2 executed, 1 from cache"
            2        | 0         | 1        | "3 actionable tasks: 2 executed, 1 up-to-date"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top