Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for crv1 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/clientset.go

    type Clientset struct {
    	*discovery.DiscoveryClient
    	crV1 *crv1.CrV1Client
    }
    
    // CrV1 retrieves the CrV1Client
    func (c *Clientset) CrV1() crv1.CrV1Interface {
    	return c.crV1
    }
    
    // Discovery retrieves the DiscoveryClient
    func (c *Clientset) Discovery() discovery.DiscoveryInterface {
    	if c == nil {
    		return nil
    	}
    	return c.DiscoveryClient
    }
    
    // NewForConfig creates a new Clientset for the given config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 18:26:20 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/utils.go

    	switch kind {
    	// Group=cr.example.apiextensions.k8s.io, Version=v1
    	case v1.SchemeGroupVersion.WithKind("Example"):
    		return &crv1.ExampleApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleSpec"):
    		return &crv1.ExampleSpecApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleStatus"):
    		return &crv1.ExampleStatusApplyConfiguration{}
    
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package v1
    
    import (
    	"context"
    	json "encoding/json"
    	"fmt"
    	"time"
    
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1"
    	scheme "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/scheme"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	"context"
    	json "encoding/json"
    	"fmt"
    
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	labels "k8s.io/apimachinery/pkg/labels"
    	types "k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	GS:   "GS",
    	GDTR: "GDTR",
    	IDTR: "IDTR",
    	LDTR: "LDTR",
    	MSW:  "MSW",
    	TASK: "TASK",
    	CR0:  "CR0",
    	CR1:  "CR1",
    	CR2:  "CR2",
    	CR3:  "CR3",
    	CR4:  "CR4",
    	CR5:  "CR5",
    	CR6:  "CR6",
    	CR7:  "CR7",
    	CR8:  "CR8",
    	CR9:  "CR9",
    	CR10: "CR10",
    	CR11: "CR11",
    	CR12: "CR12",
    	CR13: "CR13",
    	CR14: "CR14",
    	CR15: "CR15",
    	DR0:  "DR0",
    	DR1:  "DR1",
    	DR2:  "DR2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. internal/config/identity/openid/jwks.go

    type JWKS struct {
    	Keys []*JWKS `json:"keys,omitempty"`
    
    	Kty string `json:"kty"`
    	Use string `json:"use,omitempty"`
    	Kid string `json:"kid,omitempty"`
    	Alg string `json:"alg,omitempty"`
    
    	Crv string `json:"crv,omitempty"`
    	X   string `json:"x,omitempty"`
    	Y   string `json:"y,omitempty"`
    	D   string `json:"d,omitempty"`
    	N   string `json:"n,omitempty"`
    	E   string `json:"e,omitempty"`
    	K   string `json:"k,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 23:02:35 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

                type: array
    `
    
    func TestStatusStrategyValidateUpdate(t *testing.T) {
    	crdV1 := &apiextensionsv1.CustomResourceDefinition{}
    	err := yaml.Unmarshal([]byte(listTypeResourceSchema), &crdV1)
    	if err != nil {
    		t.Fatalf("unexpected decoding error: %v", err)
    	}
    	t.Logf("crd v1 details: %v", crdV1)
    	crd := &apiextensions.CustomResourceDefinition{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_ppc64x.s

    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    start:
    	CMP	R9,$16,CR0
    	CMP	R9,$32,CR1
    	CMP	R9,$64,CR2
    	MOVD	$16,R10
    	BLT	cmp8
    	BLT	CR1,cmp16
    	BLT	CR2,cmp32
    
    cmp64:	// >= 64B
    	DCBT	(R5)		// optimize for size>=64
    	DCBT	(R6)		// cache hint
    
    	SRD	$6,R9,R14	// There is at least one iteration.
    	MOVD	R14,CTR
    	ANDCC   $63,R9,R9
    	CMP	R9,$16,CR1	// Do setup for tail check early on.
    	CMP	R9,$32,CR2
    	CMP	R9,$48,CR3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/internal/bytealg/indexbyte_ppc64x.s

    	BNE	CR6,foundat3	// Match found at R8+48 bytes, jump out
    
    	ADD	$64,R8
    	CMPU	R8,R9,CR1
    	BNE	CR1,loop64	// R8 != &s[len &^ 63]?
    
    	PCALIGN	$32
    	BEQ	notfound	// Is tail length 0? CR0 is set before entering loop64.
    
    	CMP	R4,$32		// Tail length >= 32, use cmp32 path.
    	CMP	R4,$16,CR1
    	BGE	cmp32
    
    	ADD	R8,R4,R9
    	ADD	$-16,R9
    	BLE	CR1,cmp64_tail_gt0
    
    cmp64_tail_gt16:	// Tail length 17 - 32
    	LXVD2X	(R0)(R8),V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/runtime/memmove_ppc64x.s

    	LXVL	SRC, TMP, V0
    	STXVL	V0, TGT, TMP
    	RET
    #endif
    mcopy:
    	ANDCC	$7, LEN, BYTES	// R7: bytes to copy
    	SRD	$3, LEN, DWORDS	// R6: double words to copy
    	MOVFL	CR0, CR3	// save CR from ANDCC
    	CMP	DWORDS, $0, CR1	// CR1[EQ] set if no double words to copy
    
    	// Determine overlap by subtracting dest - src and comparing against the
    	// length.  This catches the cases where src and dest are in different types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top