Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for crv1 (0.5 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/hash/crc32/crc32_test.go

    	for _, length := range lengths {
    		p := make([]byte, length)
    		_, _ = rand.Read(p)
    		crcInit := uint32(rand.Int63())
    		crc1 := crcFunc1(crcInit, p)
    		crc2 := crcFunc2(crcInit, p)
    		if crc1 != crc2 {
    			t.Errorf("mismatch: 0x%x vs 0x%x (buffer length %d)", crc1, crc2, length)
    		}
    	}
    }
    
    // TestSimple tests the simple generic algorithm.
    func TestSimple(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe_test.go

    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	// nolint: lll
    	validSpiffeX509Bundle = `{
      "keys": [
        {
          "use": "x509-svid",
          "kty": "EC",
          "crv": "P-256",
          "x": "8JAyuuX9TpQJUUCQdKIX4NUG5a2FmzWFORz-VEkET6k",
          "y": "HX1rdVwFy7NAsLcWtmt0D9IxtbwmU3oDJfji9T4ZXDs",
          "x5c": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/crypto/aes/asm_ppc64x.s

    	MOVD	src+24(FP), R4 // Src pointer
    #ifdef NEEDS_ESPERM
    	MOVD	$·rcon(SB), R7
    	LVX	(R7), ESPERM   // Permute value for P8_ macros.
    #endif
    
    	// Set CR{1,2,3}EQ to hold the key size information.
    	CMPU	R6, $10, CR1
    	CMPU	R6, $12, CR2
    	CMPU	R6, $14, CR3
    
    	MOVD	$16, R6
    	MOVD	$32, R7
    	MOVD	$48, R8
    	MOVD	$64, R9
    	MOVD	$80, R10
    	MOVD	$96, R11
    	MOVD	$112, R12
    
    	// Load text in BE order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

                if (line.length > 7 && line[3] == "FILE") {
                    def name = line[7]
                    // These are objects added by GCC or Swift toolchains
                    if (!(name in ["crt1.o", "crtstuff.c", "SwiftRT-ELF.cpp"])) {
                        def type = 'F' as char
                        symbols.add(new Symbol(name, type, false))
                    }
                }
            }
            return symbols
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. cmd/server-main.go

    		return err
    	}
    	setDriveCount := uint64(v)
    
    	var pools []poolArgs
    	switch cv.Version {
    	case "v1":
    		cfV1 := config.ServerConfigV1{}
    		if err = yaml.Unmarshal(rd, &cfV1); err != nil {
    			return err
    		}
    
    		pools = make([]poolArgs, 0, len(cfV1.Pools))
    		for _, list := range cfV1.Pools {
    			pools = append(pools, poolArgs{
    				args:          list,
    				setDriveCount: setDriveCount,
    			})
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// TODO: cleanup inconsistency of printing CMPx opcodes with explicit CR arguments.
    	CMP R3, R4                      // 7c232000
    	CMP R3, R0                      // 7c230000
    	CMP R3, R0, CR1                 // CMP R3,CR1,R0   // 7ca30000
    	CMPU R3, R4                     // 7c232040
    	CMPU R3, R0                     // 7c230040
    	CMPU R3, R0, CR2                // CMPU R3,CR2,R0  // 7d230040
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

    Symbol table '.symtab' contains 53 entries:
       Num:    Value          Size Type    Bind   Vis      Ndx Name
         0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND
         1: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS crt1.o
         2: 000000000040037c    32 OBJECT  LOCAL  DEFAULT    4 __abi_tag
         3: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS greeter.cpp
         4: 00000000004010e0    11 FUNC    LOCAL  DEFAULT   15 _GLOBAL__sub_I_g[...]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top