Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for minLen (0.16 sec)

  1. internal/kms/conn.go

    const (
    	MinKMS  Type = iota + 1 // MinIO KMS
    	MinKES                  // MinIO MinKES
    	Builtin                 // Builtin single key KMS implementation
    )
    
    // Type identifies the KMS type.
    type Type uint
    
    // String returns the Type's string representation
    func (t Type) String() string {
    	switch t {
    	case MinKMS:
    		return "MinIO KMS"
    	case MinKES:
    		return "MinIO KES"
    	case Builtin:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. docs/hu/docs/index.md

    * **Egyszerű**: Egyszerű tanulásra és használatra tervezve. Kevesebb dokumentáció olvasással töltött idő.
    * **Rövid**: Kód duplikáció minimalizálása. Több funkció minden paraméter deklarálásával. Kevesebb hiba.
    * **Robosztus**: Production ready kód. Automatikus interaktív dokumentáció val.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. internal/kms/config.go

    			for {
    				select {
    				case <-ctx.Done():
    					return
    				case <-timer.C:
    					client.DescribeKey(ctx, defaultKey)
    				}
    			}
    		}()
    
    		return &KMS{
    			Type:       MinKES,
    			DefaultKey: env.Get(EnvKESDefaultKey, ""),
    			conn: &kesConn{
    				defaultKeyID: env.Get(EnvKESDefaultKey, ""),
    				client:       client,
    			},
    			latencyBuckets: defaultLatencyBuckets,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. internal/kms/kms.go

    // It implements various cryptographic operations,
    // like data key generation and decryption.
    type KMS struct {
    	// Type identifies the KMS implementation. Either,
    	// MinKMS, MinKES or Builtin.
    	Type Type
    
    	// The default key, used for generating new data keys
    	// if no explicit GenerateKeyRequest.Name is provided.
    	DefaultKey string
    
    	conn conn // Connection to the KMS
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    	KeepAlive(new)
    	KeepAlive(old)
    }
    func setitimer_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sysctl(mib *uint32, miblen uint32, oldp *byte, oldlenp *uintptr, newp *byte, newlen uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(sysctl_trampoline)), unsafe.Pointer(&mib))
    	KeepAlive(mib)
    	KeepAlive(oldp)
    	KeepAlive(oldlenp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. cluster/gce/config-test.sh

    MASTER_NAME="${INSTANCE_PREFIX}-master"
    export AGGREGATOR_MASTER_NAME="${INSTANCE_PREFIX}-aggregator"
    export INITIAL_ETCD_CLUSTER=${MASTER_NAME}
    export MASTER_TAG="${INSTANCE_PREFIX}-master"
    export NODE_TAG="${INSTANCE_PREFIX}-minion"
    
    CLUSTER_IP_RANGE=${CLUSTER_IP_RANGE:-$(get-cluster-ip-range)}
    MASTER_IP_RANGE=${MASTER_IP_RANGE:-10.246.0.0/24}
    # NODE_IP_RANGE is used when ENABLE_IP_ALIASES=true or CREATE_CUSTOM_NETWORK=true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      kube::util::read-array routes < <(gcloud compute routes list --project "${NETWORK_PROJECT}" \
        --filter="name ~ '${INSTANCE_PREFIX}-minion-.{4}'" --format='value(name)')
      if (( "${#routes[@]}" > 0 )); then
        KUBE_RESOURCE_FOUND="${#routes[@]} routes matching ${INSTANCE_PREFIX}-minion-.{4}"
        return 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. RELEASE.md

    Liang-Chi Hsieh, Loo Rong Jie, Mahesh Bhosale, MandarJKulkarni, ManHyuk, Marcus
    Ong, Marshal Hayes, Martin Pool, matthieudelaro, mdfaijul, mholzel, Michael
    Zhou, Ming Li, Minmin Sun, Myungjoo Ham, MyungsungKwak, Naman Kamra, Peng Yu,
    Penghao Cen, Phil, Raghuraman-K, resec, Rohin Mohanadas, Sandeep N Gupta, Scott
    Tseng, seaotterman, Seo Sanghyeon, Sergei Lebedev, Ted Chang, terrytangyuan, Tim
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top