Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 8192 (0.09 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

     *
     * @author Jason van Zyl
     */
    public class PluginDescriptorBuilder {
    
        public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0";
        private static final int BUFFER_SIZE = 8192;
    
        public interface StreamSupplier {
            InputStream open() throws IOException;
        }
    
        public interface ReaderSupplier {
            Reader open() throws IOException;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    				write(block)
    				if canWrite {
    					w.(http.Flusher).Flush()
    				}
    			}
    		}
    	}()
    	return &h
    }
    
    var poolBuf8k = sync.Pool{
    	New: func() interface{} {
    		b := make([]byte, 8192)
    		return &b
    	},
    }
    
    var poolBuf128k = sync.Pool{
    	New: func() interface{} {
    		b := make([]byte, 128<<10)
    		return b
    	},
    }
    
    // waitForHTTPStream will wait for responses where
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    // history here.
    func splitTextSections(ctxt *Link) bool {
    	return (ctxt.IsARM() || ctxt.IsPPC64() || (ctxt.IsARM64() && ctxt.IsDarwin())) && ctxt.IsExternal()
    }
    
    // On Wasm, we reserve 4096 bytes for zero page, then 8192 bytes for wasm_exec.js
    // to store command line args and environment variables.
    // Data sections starts from at least address 12288.
    // Keep in sync with wasm_exec.js.
    const wasmMinDataAddr = 4096 + 8192
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/requirements.in

    opentelemetry-instrumentation-wsgi==0.43b0
    opentelemetry-propagator-b3==1.22.0
    opentelemetry-sdk==1.22.0
    opentelemetry-semantic-conventions==0.43b0
    opentelemetry-util-http==0.43b0
    prometheus-client==0.19.0
    requests==2.31.0
    simplejson==3.19.2
    urllib3==2.2.0
    gunicorn==22.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 485 bytes
    - Viewed (0)
  5. docs/orchestration/docker-compose/docker-compose.yaml

        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
    
      nginx:
        image: nginx:1.19.2-alpine
        hostname: nginx
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
          - "9000:9000"
          - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. buildscripts/upgrade-tests/compose.yml

          - data3-3:/data3
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
        image: nginx:1.19.2-alpine
        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. requirements_lock_3_9.txt

        --hash=sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a \
        --hash=sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4
        # via -r requirements.in
    zipp==3.19.2 \
        --hash=sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19 \
        --hash=sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c
        # via importlib-metadata
    
    setuptools==68.2.2 \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 19:00:33 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/requirements.txt

    requests==2.31.0 \
        --hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f \
        --hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1
        # via -r requirements.in
    simplejson==3.19.2 \
        --hash=sha256:0405984f3ec1d3f8777c4adc33eac7ab7a3e629f3b1c05fdded63acc7cf01137 \
        --hash=sha256:0436a70d8eb42bea4fe1a1c32d371d9bb3b62c637969cb33970ad624d5a3336a \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  9. pkg/features/kube_features.go

    	// beta: v1.27
    	//
    	// Enables a StatefulSet to start from an arbitrary non zero ordinal
    	StatefulSetStartOrdinal featuregate.Feature = "StatefulSetStartOrdinal"
    
    	// owner: @nilekhc
    	// kep: https://kep.k8s.io/4192
    	// alpha: v1.30
    
    	// Enables support for the StorageVersionMigrator controller.
    	StorageVersionMigrator featuregate.Feature = "StorageVersionMigrator"
    
    	// owner: @robscott
    	// kep: https://kep.k8s.io/2433
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 🌐 Add Turkish translation for `docs/tr/docs/project-generation.md`. PR [#5192](https://github.com/tiangolo/fastapi/pull/5192) by [@BilalAlpaslan](https://github.com/BilalAlpaslan).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top