Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 700 for readImg (0.29 sec)

  1. src/image/gif/writer_test.go

    			t.Errorf("%s: average delta is too high. expected: %d, got %d", tc.filename, tc.tolerance, avgDelta)
    			continue
    		}
    	}
    }
    
    func TestSubImage(t *testing.T) {
    	m0, err := readImg("../testdata/video-001.gif")
    	if err != nil {
    		t.Fatalf("readImg: %v", err)
    	}
    	m0 = m0.(*image.Paletted).SubImage(image.Rect(0, 0, 50, 30))
    	var buf bytes.Buffer
    	err = Encode(&buf, m0, nil)
    	if err != nil {
    		t.Fatalf("Encode: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. README.md

    This README provides quickstart instructions on running MinIO on bare metal hardware, including container-based installations. For Kubernetes environments, use the [MinIO Kubernetes Operator](https://github.com/minio/operator/blob/master/README.md).
    
    ## Container Installation
    
    Use the following commands to run a standalone MinIO server as a container.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. docs/config/README.md

    ```
    KEY:
    storage_class  define object level redundancy
    
    ARGS:
    standard  (string)    set the parity count for default standard storage class e.g. "EC:4"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. README.md

    * **Intuitive**: Great editor support. <abbr title="also known as auto-complete, autocompletion, IntelliSense">Completion</abbr> everywhere. Less time debugging.
    * **Easy**: Designed to be easy to use and learn. Less time reading docs.
    * **Short**: Minimize code duplication. Multiple features from each parameter declaration. Fewer bugs.
    * **Robust**: Get production-ready code. With automatic interactive documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        importer/exporter from any format to MLIR and export MLIR to anything.
    
    For more details, please checkout the
    [TAC workflow](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/compiler/mlir/lite/experimental/tac/README.md#tac-workflow)
    section
    
    ## How to use
    
    Once you have a converted TfLite model ready, you can use the following command
    to use TAC to optimize for your model:
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  6. docs/bucket/versioning/README.md

    unintended overwrites, deletions, protect objects with retention policies.
    
    To control data retention and storage usage, use object versioning with [object lifecycle management](https://github.com/minio/minio/blob/master/docs/bucket/lifecycle/README.md).  If you have an object expiration lifecycle policy in your non-versioned bucket and you want to maintain the same permanent delete behavior when on versioning-enabled bucket, you must add a noncurrent expiration policy. The noncurrent expiration...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. docs/security/README.md

    More details about supported KMS implementations and configuration can be found at the [KMS guide](https://github.com/minio/minio/blob/master/docs/kms/README.md).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/README

    Constantin Konstantinidis <******@****.***> 1699176912 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    These inputs are often read via an API that Gradle doesn’t control, e.g. Java API via `System.getenv()`.
    
    So to track these inputs we had to find a way to track when they are accessed by intercepting API calls reading them. 
    And that is why we started instrumenting bytecode.
    
    Later, with a requirement to migrate Gradle core APIs to lazy properties, we were looking at how we could make old plugins compatible with new Gradle core APIs. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/cmd/go/script_test.go

    	if err != nil {
    		t.Fatalf("reading go.mod after -testsum: %v", err)
    	}
    	if !bytes.Equal(newGomodData, archive.Files[gomodIdx].Data) {
    		archive.Files[gomodIdx].Data = newGomodData
    		rewrite = true
    	}
    
    	newGosumData, err := os.ReadFile(s.Path("go.sum"))
    	if err != nil && !os.IsNotExist(err) {
    		t.Fatalf("reading go.sum after -testsum: %v", err)
    	}
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top