Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for claims0 (0.26 sec)

  1. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    // ValidateHTTPHeaderNameOrJwtClaimRoute validates a header name, allowing special @request.auth.claims syntax
    func ValidateHTTPHeaderNameOrJwtClaimRoute(name string) error {
    	if name == "" {
    		return fmt.Errorf("header name cannot be empty")
    	}
    	if jwt.ToRoutingClaim(name).Match {
    		// Jwt claim form
    		return nil
    	}
    	// Else ensure its a valid header
    	if !validHeaderRegex.MatchString(name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if generatedMeta.GetName() != "prefix-7" {
    		t.Errorf("Expected prefix-7 but got %s", generatedMeta.GetName())
    	}
    
    	// Now that 8 generated names (0..7) are claimed, 8 name generation attempts will not be enough
    	// and create should return an already exists error.
    	seqNameGenerator.seq = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// Kubelet.HandlerSupportsUserNamespaces functions and shouldn't be used anywhere else.
    	updateRuntimeMux sync.Mutex
    
    	// nodeLeaseController claims and renews the node lease for this Kubelet
    	nodeLeaseController lease.Controller
    
    	// pleg observes the state of the container runtime and notifies the kubelet of changes to containers, which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    		{Name: "Status", Type: "string", Description: apiv1.PersistentVolumeStatus{}.SwaggerDoc()["phase"]},
    		{Name: "Claim", Type: "string", Description: apiv1.PersistentVolumeSpec{}.SwaggerDoc()["claimRef"]},
    		{Name: "StorageClass", Type: "string", Description: "StorageClass of the pv"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top