Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for 1024x1024 (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    		if err != testCase.expectErr || n != testCase.expectLen {
    			t.Fatalf("%d: unexpected body: %d / %v", i, n, err)
    		}
    	}
    }
    
    func TestBigYAML(t *testing.T) {
    	d := `
    stuff: 1
    `
    	maxLen := 5 * 1024 * 1024
    	bufferLen := 4 * 1024
    	//  maxLen 5 M
    	dd := strings.Repeat(d, 512*1024)
    	r := NewDocumentDecoder(io.NopCloser(bytes.NewReader([]byte(dd[:maxLen-1]))))
    	b := make([]byte, bufferLen)
    	n, err := r.Read(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    	if opts.ListenerBuilder != nil {
    		var err error
    		if listener, err = opts.ListenerBuilder(); err != nil {
    			t.Fatal(err)
    		}
    	} else {
    		// Start in memory gRPC listener
    		buffer := 1024 * 1024
    		listener = bufconn.Listen(buffer)
    	}
    
    	grpcServer := grpc.NewServer()
    	s.Register(grpcServer)
    	go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    //	  podSubnet: "10.244.0.0/24"
    //	  dnsDomain: "cluster.local"
    //	kubernetesVersion: "v1.21.0"
    //	controlPlaneEndpoint: "10.100.0.1:6443"
    //	apiServer:
    //	  extraArgs:
    //	    authorization-mode: "Node,RBAC"
    //	  extraVolumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    	scanner := bufio.NewScanner(r)
    	// the size of initial allocation for buffer 4k
    	buf := make([]byte, 4*1024)
    	// the maximum size used to buffer a token 5M
    	scanner.Buffer(buf, 5*1024*1024)
    	scanner.Split(splitYAMLDocument)
    	return &YAMLDecoder{
    		r:       r,
    		scanner: scanner,
    	}
    }
    
    // Read reads the previous slice into the buffer, or attempts to read
    // the next chunk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        assertThat(callFailed.ioe).isNotNull()
        assertThat(request.ioe).isNotNull()
      }
    
      private inner class NonCompletingRequestBody : RequestBody() {
        private val chunk: ByteArray? = ByteArray(1024 * 1024)
        var ioe: IOException? = null
    
        override fun contentType(): MediaType? {
          return "text/plain".toMediaType()
        }
    
        override fun contentLength(): Long {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

        protected int initialBufferSize = 10000;
    
        protected boolean replaceDuplication = false;
    
        protected int[] spaceChars = { '\u0020', '\u00a0', '\u3000', '\ufffd' };
    
        protected int memorySize = 1024 * 1024; //1mb
    
        protected int maxAlphanumTermSize = -1;
    
        protected int maxSymbolTermSize = -1;
    
        protected TikaConfig tikaConfig;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    //	  podSubnet: "10.244.0.0/24"
    //	  dnsDomain: "cluster.local"
    //	kubernetesVersion: "v1.21.0"
    //	controlPlaneEndpoint: "10.100.0.1:6443"
    //	apiServer:
    //	  extraArgs:
    //	    authorization-mode: "Node,RBAC"
    //	  extraVolumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        server.enqueue(MockResponse(body = "abc"))
    
        val ctxt = InstrumentationRegistry.getInstrumentation().targetContext.applicationContext
    
        val cacheSize = 1L * 1024 * 1024 // 1MB
        val cache = Cache(ctxt.cacheDir.resolve("testCache"), cacheSize)
    
        try {
          client =
            client.newBuilder()
              .cache(cache)
              .build()
    
          val request =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM 3
        peer.sendFrame().headers(false, 3, headerEntries("a", "apple"))
        peer.sendFrame().data(false, 3, data(1024), 1024)
        peer.acceptFrame() // RST_STREAM
        peer.sendFrame().data(true, 3, data(1024), 1024)
        peer.acceptFrame() // RST_STREAM
        peer.play()
        val connection = connect(peer)
        val stream1 = connection.newStream(headerEntries("b", "bark"), false)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/compress/bzip2/bzip2.go

    				repeatPower = 1
    			}
    			repeat += repeatPower << v
    			repeatPower <<= 1
    
    			// This limit of 2 million comes from the bzip2 source
    			// code. It prevents repeat from overflowing.
    			if repeat > 2*1024*1024 {
    				return StructuralError("repeat count too large")
    			}
    			continue
    		}
    
    		if repeat > 0 {
    			// We have decoded a complete run-length so we need to
    			// replicate the last output symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top