Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,052 for backHand (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    func (qs *queueSet) shuffleShardLocked(hashValue uint64, descr1, descr2 interface{}) int {
    	var backHand [8]int
    	// Deal into a data structure, so that the order of visit below is not necessarily the order of the deal.
    	// This removes bias in the case of flows with overlapping hands.
    	hand := qs.dealer.DealIntoHand(hashValue, backHand[:])
    	handSize := len(hand)
    	offset := qs.enqueues % handSize
    	qs.enqueues++
    	bestQueueIdx := -1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend.go

    )
    
    // AllowedFormats are the formats known by log backend.
    var AllowedFormats = []string{
    	FormatLegacy,
    	FormatJson,
    }
    
    type backend struct {
    	out     io.Writer
    	format  string
    	encoder runtime.Encoder
    }
    
    var _ audit.Backend = &backend{}
    
    func NewBackend(out io.Writer, format string, groupVersion schema.GroupVersion) audit.Backend {
    	return &backend{
    		out:     out,
    		format:  format,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 14:38:47 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/httproute-portless-backend.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: portless-backend
    spec:
      parentRefs:
      - name: prod-web
      rules:
      - backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 178 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-backend-group.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backend-group
    spec:
      rules:
      - backendRefs:
        - group: "*"
          name: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 182 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-backend-port.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backend-port
    spec:
      rules:
      - backendRefs:
        - name: my-service1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 176 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-backend-kind.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backend-kind
    spec:
      rules:
      - backendRefs:
        - kind: "*"
          name: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 180 bytes
    - Viewed (0)
  7. cmd/warm-backend-s3.go

    	case conf.AccessKey != "" && conf.SecretKey != "":
    		creds = credentials.NewStaticV4(conf.AccessKey, conf.SecretKey, "")
    	default:
    		return nil, errors.New("insufficient parameters for S3 backend authentication")
    	}
    	opts := &minio.Options{
    		Creds:     creds,
    		Secure:    u.Scheme == "https",
    		Transport: globalRemoteTargetTransport,
    	}
    	client, err := minio.New(u.Host, opts)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. cmd/warm-backend.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. docs/kms/IAM.md

    Yes, MinIO will try to transparently migrate any existing IAM data and either stores
    it in plaintext (no KMS) or re-encrypts using the KMS.
    
    > Is this change backward compatible? Will it break my setup?
    
    This change is not backward compatible for all setups. In particular, the native
    Hashicorp Vault integration - which has been deprecated already - won't be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cmd/warm-backend-gcs.go

    Harshavardhana <******@****.***> 1713699798 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top