Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 456 for high (0.16 sec)

  1. helm/minio/Chart.yaml

    apiVersion: v1
    description: High Performance Object Storage
    name: minio
    version: 5.2.0
    appVersion: RELEASE.2024-04-18T19-09-19Z
    keywords:
      - minio
      - storage
      - object-storage
      - s3
      - cluster
    home: https://min.io
    icon: https://min.io/resources/img/logo/MINIO_wordmark.png
    sources:
    - https://github.com/minio/minio
    maintainers:
    - name: MinIO, Inc
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 374 bytes
    - Viewed (0)
  2. docs/lambda/README.md

    ```
    
    Create a file `testobject` with some test data that will be transformed
    ```
    cat > testobject << EOF
    MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
    EOF
    ```
    
    Upload this object to the bucket via `mc cp`
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 04 19:15:28 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Fingerprint2011.java

        return val ^ (val >>> 47);
      }
    
      /** Implementation of Hash128to64 from util/hash/hash128to64.h */
      @VisibleForTesting
      static long hash128to64(long high, long low) {
        long a = (low ^ high) * K3;
        a ^= (a >>> 47);
        long b = (high ^ a) * K3;
        b ^= (b >>> 47);
        b *= K3;
        return b;
      }
    
      /**
       * Computes intermediate hash of 32 bytes of byte array from the given offset. Results are
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Dec 28 17:50:25 GMT 2021
    - 6.5K bytes
    - Viewed (0)
  4. architecture/networking/controllers.md

    Unfortunately, writing controllers is very error prone, even for seemingly simple cases.
    To work around this, Istio has a variety of abstractions meant to make writing controllers easier.
    
    ## Clients
    
    Istio offers a variety of increasingly high level abstractions on top of the common Kubernetes [`client-go`](https://github.com/kubernetes/client-go).
    
    ```mermaid
    flowchart TD
        kcg["Kubernetes client-go"]
        ic["Istio kube.Client"]
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 09 17:41:25 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

      static <K extends @Nullable Object> ObjectCountLinkedHashMap<K> create() {
        return new ObjectCountLinkedHashMap<K>();
      }
    
      /**
       * Creates a {@code ObjectCountLinkedHashMap} instance, with a high enough "initial capacity" that
       * it <i>should</i> hold {@code expectedSize} elements without growth.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jun 01 22:07:10 GMT 2021
    - 5.9K bytes
    - Viewed (0)
  6. fastapi/__init__.py

    """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
    
    __version__ = "0.110.2"
    
    from starlette import status as status
    
    from .applications import FastAPI as FastAPI
    from .background import BackgroundTasks as BackgroundTasks
    from .datastructures import UploadFile as UploadFile
    from .exceptions import HTTPException as HTTPException
    from .exceptions import WebSocketException as WebSocketException
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Apr 19 00:31:47 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. CITATION.cff

        family-names: Ramírez
        email: ******@****.***
    identifiers:
    repository-code: 'https://github.com/tiangolo/fastapi'
    url: 'https://fastapi.tiangolo.com'
    abstract: >-
      FastAPI framework, high performance, easy to learn, fast to code,
      ready for production
    keywords:
      - fastapi
      - pydantic
      - starlette
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Oct 22 10:03:38 GMT 2023
    - 615 bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/ASN1Util.java

                    throw new IOException("corrupted stream - high tag number < 31 found");
                }
    
                tagNo = b & 0x7f;
    
                // X.690-0207 8.1.2.4.2
                // "c) bits 7 to 1 of the first subsequent octet shall not all be zero."
                if (0 == tagNo)
                {
                    throw new IOException("corrupted stream - invalid high tag number found");
                }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64error.s

    	VPGATHERDQ (BP)(X15*2), K1, Y15 // ERROR "index and destination registers should be distinct"
    	VPGATHERDQ (BP)(Y20*2), K1, Z20 // ERROR "index and destination registers should be distinct"
    	// Instructions without EVEX variant can't use High-16 registers.
    	VADDSUBPD X20, X1, X2           // ERROR "invalid instruction"
    	VADDSUBPS X0, X20, X2           // ERROR "invalid instruction"
    	// Use of K0 for write mask (Yknot0).
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 14 00:03:57 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  10. api/go1.10.txt

    pkg debug/elf, const R_PPC64_ADDR16_HIGH = 110
    pkg debug/elf, const R_PPC64_ADDR16_HIGH R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_HIGHA = 111
    pkg debug/elf, const R_PPC64_ADDR16_HIGHA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR64_LOCAL = 117
    pkg debug/elf, const R_PPC64_ADDR64_LOCAL R_PPC64
    pkg debug/elf, const R_PPC64_DTPREL16_HIGH = 114
    pkg debug/elf, const R_PPC64_DTPREL16_HIGH R_PPC64
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
Back to top