Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 23543 (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

    * Add a client flag to delete "--now" for grace period 0 ([#23756](https://github.com/kubernetes/kubernetes/pull/23756), [@smarterclayton](https://github.com/smarterclayton))
    * add act-as powers ([#23549](https://github.com/kubernetes/kubernetes/pull/23549), [@deads2k](https://github.com/deads2k))
    * Build Kubernetes, etcd and flannel for arm64 and ppc64le ([#23931](https://github.com/kubernetes/kubernetes/pull/23931), [@luxas](https://github.com/luxas))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              ),
          }])
      )
      @test_util.run_in_graph_and_eager_modes
      def test_add_ptq_model(
          self,
          shape_dynamic: bool,
      ):
        input_shape = (None, 3, 4, 3) if shape_dynamic else (2, 3, 4, 3)
        self._create_add_model(
            input_shape,
            self._input_saved_model_path,
        )
    
        # Generate model input data.
        rng = np.random.default_rng(seed=42)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. src/net/http/httputil/reverseproxy_test.go

    	closed bool
    }
    
    func (cc *checkCloser) Close() error {
    	cc.closed = true
    	return nil
    }
    
    func (cc *checkCloser) Read(b []byte) (int, error) {
    	return len(b), nil
    }
    
    // Issue 23643: panic on body copy error
    func TestReverseProxy_PanicBodyError(t *testing.T) {
    	log.SetOutput(io.Discard)
    	defer log.SetOutput(os.Stderr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// half (a quarter overall) will be SLLS; an eighth will be SLLLS, and so on.
    	// Not counting the final S in each (which overlaps the first S in the next),
    	// This works out to an average length 2×½ + 3×¼ + 4×⅛ + ... = 3.
    	// The space we need is further reduced by the fact that many of the
    	// short patterns like SLS will often be the same character sequences
    	// repeated throughout the text, reducing maxID relative to numLMS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      /**
       * Webservers may set the initial window size to zero, which is a special case because it means
       * that we have to flush headers immediately before any request body can be sent.
       * https://github.com/square/okhttp/issues/2543
       */
      @Test fun peerSetsZeroFlowControl() {
        peer.setClient(true)
    
        // Write the mocking script.
        peer.sendFrame().settings(Settings().set(Settings.INITIAL_WINDOW_SIZE, 0))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top