Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for 1024m (0.04 sec)

  1. cmd/auth-handler_test.go

    }
    
    // Test get request auth type.
    func TestGetRequestAuthType(t *testing.T) {
    	type testCase struct {
    		req   *http.Request
    		authT authType
    	}
    	nopCloser := io.NopCloser(io.LimitReader(&nullReader{}, 1024))
    	testCases := []testCase{
    		// Test case - 1
    		// Check for generic signature v4 header.
    		{
    			req: &http.Request{
    				URL: &url.URL{
    					Host:   "127.0.0.1:9000",
    					Scheme: httpScheme,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/encoding/hex/hex.go

    	dumper := Dumper(&buf)
    	dumper.Write(data)
    	dumper.Close()
    	return buf.String()
    }
    
    // bufferSize is the number of hexadecimal characters to buffer in encoder and decoder.
    const bufferSize = 1024
    
    type encoder struct {
    	w   io.Writer
    	err error
    	out [bufferSize]byte // output buffer
    }
    
    // NewEncoder returns an [io.Writer] that writes lowercase hexadecimal characters to w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/ztunnelserver.go

    	return m, err
    }
    
    func readProto[T any, PT interface {
    	proto.Message
    	*T
    }](c *net.UnixConn, timeout time.Duration, oob []byte) (PT, int, error) {
    	var buf [1024]byte
    	err := c.SetReadDeadline(time.Now().Add(timeout))
    	if err != nil {
    		return nil, 0, err
    	}
    	n, oobn, flags, _, err := c.ReadMsgUnix(buf[:], oob)
    	if err != nil {
    		return nil, 0, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    	DISPATCH(runtime·call16, 16)
    	DISPATCH(runtime·call32, 32)
    	DISPATCH(runtime·call64, 64)
    	DISPATCH(runtime·call128, 128)
    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            ),
            1 / 3,
        )
    
      def test_when_preset_not_srq_raises_error(self):
        self._create_matmul_model(
            input_shape=(1, 1024),
            weight_shape=(1024, 3),
            saved_model_path=self._input_saved_model_path,
        )
    
        config = qc.QuantizationConfig()
        with self.assertRaisesRegex(ValueError, 'only supports static-range PTQ'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/constants/constants.go

    	KubeletEnvFileVariableName = "KUBELET_KUBEADM_ARGS"
    
    	// KubeletHealthzPort is the port of the kubelet healthz endpoint
    	KubeletHealthzPort = 10248
    
    	// MinExternalEtcdVersion indicates minimum external etcd version which kubeadm supports
    	MinExternalEtcdVersion = "3.5.11-0"
    
    	// DefaultEtcdVersion indicates the default etcd version that kubeadm uses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat.go

    	// assembly with loop unrolling depending on the architecture and bounds
    	// checks are removed by the compiler thanks to the constant size.
    	case 1024 / _W:
    		const n = 1024 / _W // compiler hint
    		T := make([]uint, n*2)
    		var c uint
    		for i := 0; i < n; i++ {
    			d := bLimbs[i]
    			c1 := addMulVVW1024(&T[i], &aLimbs[0], d)
    			Y := T[i] * m.m0inv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/runtime/asm_loong64.s

    	MOVWU frameSize+32(FP), R19
    	DISPATCH(runtime·call32, 32)
    	DISPATCH(runtime·call64, 64)
    	DISPATCH(runtime·call128, 128)
    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/runtime/asm_mipsx.s

    	DISPATCH(runtime·call16, 16)
    	DISPATCH(runtime·call32, 32)
    	DISPATCH(runtime·call64, 64)
    	DISPATCH(runtime·call128, 128)
    	DISPATCH(runtime·call256, 256)
    	DISPATCH(runtime·call512, 512)
    	DISPATCH(runtime·call1024, 1024)
    	DISPATCH(runtime·call2048, 2048)
    	DISPATCH(runtime·call4096, 4096)
    	DISPATCH(runtime·call8192, 8192)
    	DISPATCH(runtime·call16384, 16384)
    	DISPATCH(runtime·call32768, 32768)
    	DISPATCH(runtime·call65536, 65536)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          # Resources for the sidecar.
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
            limits:
              cpu: 2000m
              memory: 1024Mi
          # Default port for Pilot agent health checks. A value of 0 will disable health checking.
          statusPort: 15020
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top