Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,511 for leaders (0.17 sec)

  1. tests/testdata/config/rule-default-route-append-headers.yaml

      name: appendh-route
      namespace: testns
    spec:
      hosts:
        - appendh.test.istio.io
      http:
        - route:
          - destination:
              host: appendh.test.istio.io
          headers:
            request:
              add:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 644 bytes
    - Viewed (0)
  2. src/testing/iotest/reader.go

    // Package iotest implements Readers and Writers useful mainly for testing.
    package iotest
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    )
    
    // OneByteReader returns a Reader that implements
    // each non-empty Read by reading one byte from r.
    func OneByteReader(r io.Reader) io.Reader { return &oneByteReader{r} }
    
    type oneByteReader struct {
    	r io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-header-name.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-header-name
    spec:
      rules:
      - matches:
        - headers:
          - type: Exact
            name: magic/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 203 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/src/headers/headers.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  5. docs/pt/docs/tutorial/header-params.md

        ```
    
    !!! note "Detalhes Técnicos"
        `Header` é uma classe "irmã" de `Path`, `Query` e `Cookie`. Ela também herda da mesma classe em comum `Param`.
    
        Mas lembre-se que quando você importa `Query`, `Path`, `Header`, e outras de `fastapi`, elas são na verdade funções que retornam classes especiais.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/authz/headers.go

    	XExtAuthzAllow                    = "allow"
    	XExtAuthzCheckReceived            = "X-Ext-Authz-Check-Received"
    	XExtAuthzAdditionalHeaderOverride = "X-Ext-Authz-Additional-Header-Override"
    	GRPCAdditionalHeaderOverrideValue = "grpc-additional-header-override-value"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 23 16:02:21 UTC 2022
    - 928 bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

          Headers.Builder()
            .addUnsafeNonAscii("héader1", "value1")
            .build()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Unexpected char 0xe9 at 1 in header name: héader1")
        }
      }
    
      @Test fun addUnsafeNonAsciiAcceptsUnicodeValue() {
        val headers =
          Headers.Builder()
            .addUnsafeNonAscii("header1", "valué1")
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. internal/s3select/csv/reader_contrib_test.go

    			header:          true,
    			wantColumns:     []string{"header1", "header2", "header3"},
    			wantFields:      "ok1,ok2,ok3\n" + `a word,"b"""` + "\n",
    			wantErr:         io.EOF,
    		},
    		{
    			// This works since LazyQuotes is true:
    			file:            "invalid-badstartline.csv",
    			recordDelimiter: "\n",
    			fieldDelimiter:  ",",
    			sendErr:         nil,
    			header:          true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Client-go: Optimized leaders renewing leases by updating leader lock optimistically without getting the record from the API server first. Also, a new metric `leader_election_slowpath_total` was added to allow users to monitor how many leader elections are updated non-optimistically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. releasenotes/notes/disable-host-header-fallback.yaml

      configuration.
    upgradeNotes:
      - title: Host header fallback disabled by default for Prometheus metrics for *all* inbound traffic.
        content: |
          Host header fallback for determining values for Prometheus `destination_service` labels has been disabled for all incoming traffic.
          Previously, this was disabled *only* for traffic arriving at Gateways. If you are relying on host header fallback behavior to properly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top