Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for comprises (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/types/namespacedname.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package types
    
    // NamespacedName comprises a resource name, with a mandatory namespace,
    // rendered as "<namespace>/<name>".  Being a type captures intent and
    // helps make sure that UIDs, namespaced names and non-namespaced names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 10:47:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    // limitations under the License.
    
    [[build_file_basics]]
    = Build File Basics
    
    Generally, a build script details *build configuration, tasks, and plugins*.
    
    image::gradle-basic-4.png[]
    
    Every Gradle build comprises at least one _build script_.
    
    In the build file, two types of dependencies can be added:
    
    1. The libraries and/or plugins on which Gradle and the build script depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/error_test.go

    // just before (or on the same line as) the offending token.
    //
    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <p>
     *  Each single {@link org.gradle.internal.serialize.graph.codecs.Binding binding} comprises:
     *  <ul>
     *     <li>a tag (a unique numeric identifier that represents the type the binding supports)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. internal/config/compress/compress.go

    	cfg := Config{}
    	if err = config.CheckValidKeys(config.CompressionSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	compress := env.Get(EnvCompressState, kvs.Get(config.Enable))
    	if compress == "" {
    		compress = env.Get(EnvCompress, "")
    	}
    	cfg.Enabled, err = config.ParseBool(compress)
    	if err != nil {
    		// Parsing failures happen due to empty KVS, ignore it.
    		if kvs.Empty() {
    			return cfg, nil
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/ArchiveOutputStreamFactory.java

    package org.gradle.api.internal.file.archive.compression;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * Compresses the input
     */
    public interface ArchiveOutputStreamFactory {
    
        /**
         * Returns the output stream that is able to compress into the destination file
         *
         * @param destination the destination of the archive output stream
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  7. docs/compression/README.md

    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    This algorithm is specifically optimized for machine generated content.
    Write throughput is typically at least 500MB/s per CPU core,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/compress/gzip/example_test.go

    	// Make sure that bodyReader is always closed, so that the
    	// goroutine below will always exit.
    	defer bodyReader.Close()
    
    	// gzipWriter compresses data to httpWriter.
    	gzipWriter := gzip.NewWriter(httpWriter)
    
    	// errch collects any errors from the writing goroutine.
    	errch := make(chan error, 1)
    
    	go func() {
    		defer close(errch)
    		sentErr := false
    		sendErr := func(err error) {
    			if !sentErr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  9. .github/workflows/mint/minio-compress-encrypt.yaml

    Harshavardhana <******@****.***> 1699046298 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/compress/zlib/writer_test.go

    }
    
    func testLevelDict(t *testing.T, fn string, b0 []byte, level int, d string) {
    	// Make dictionary, if given.
    	var dict []byte
    	if d != "" {
    		dict = []byte(d)
    	}
    
    	// Push data through a pipe that compresses at the write end, and decompresses at the read end.
    	piper, pipew := io.Pipe()
    	defer piper.Close()
    	go func() {
    		defer pipew.Close()
    		zlibw, err := NewWriterLevelDict(pipew, level, dict)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
Back to top