Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for 4291 (0.29 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	REG_CR6EQ
    	REG_CR6SO
    	REG_CR7LT
    	REG_CR7GT
    	REG_CR7EQ
    	REG_CR7SO
    
    	/* Align FPR and VSR vectors such that when masked with 0x3F they produce
    	   an equivalent VSX register. */
    	/* F0=4160 ... F31=4191 */
    	REG_F0
    	REG_F1
    	REG_F2
    	REG_F3
    	REG_F4
    	REG_F5
    	REG_F6
    	REG_F7
    	REG_F8
    	REG_F9
    	REG_F10
    	REG_F11
    	REG_F12
    	REG_F13
    	REG_F14
    	REG_F15
    	REG_F16
    	REG_F17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndEd25519Given

    00000180  05 26 cc d8 a8 4a a9 b1  67 71 a6 82 1c dc f0 15  |.&...J..gq......|
    00000190  6d 25 f5 6e be a2 5f 45  39 dc d1 2e df fa e1 e9  |m%.n.._E9.......|
    000001a0  48 ca 7a 78 fa 0e 53 d1  5c 8f c2 40 91 d5 fa 40  |H.zx..S.\..@...@|
    000001b0  7e a1 52 23 c8 56 1f 31  17 91 5c 38 bb 54 56 f3  |~.R#.V.1..\8.TV.|
    000001c0  1e 14 90 43 b7 ef fd 56  b5 ae 13 90 97 dc 60 15  |...C...V......`.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    		case extensionPSKModes:
    			// RFC 8446, Section 4.2.9
    			if !readUint8LengthPrefixed(&extData, &m.pskModes) {
    				return false
    			}
    		case extensionQUICTransportParameters:
    			m.quicTransportParameters = make([]byte, len(extData))
    			if !extData.CopyBytes(m.quicTransportParameters) {
    				return false
    			}
    		case extensionPreSharedKey:
    			// RFC 8446, Section 4.2.11
    			if !extensions.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. kotlin-js-store/yarn.lock

      integrity sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==
    
    socket.io-parser@~4.2.1:
      version "4.2.1"
      resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.1.tgz#01c96efa11ded938dcb21cbe590c26af5eff65e5"
      integrity sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==
      dependencies:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	KubeletPodResourcesGet featuregate.Feature = "KubeletPodResourcesGet"
    
    	// KubeletSeparateDiskGC enables Kubelet to garbage collection images/containers on different filesystems
    	// owner: @kannon92
    	// kep: https://kep.k8s.io/4191
    	// alpha: v1.29
    	KubeletSeparateDiskGC featuregate.Feature = "KubeletSeparateDiskGC"
    
    	// owner: @sallyom
    	// kep: https://kep.k8s.io/2832
    	// alpha: v1.25
    	// beta: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. pkg/util/iptables/iptables_test.go

    	}
    }
    
    func TestGetIPTablesHasCheckCommand(t *testing.T) {
    	testCases := []struct {
    		Version  string
    		Expected bool
    	}{
    		{"iptables v1.4.7", false},
    		{"iptables v1.4.11", true},
    		{"iptables v1.4.19.1", true},
    		{"iptables v2.0.0", true},
    		{"total junk", true},
    	}
    
    	for _, testCase := range testCases {
    		fcmd := fakeexec.FakeCmd{
    			CombinedOutputScript: []fakeexec.FakeAction{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  7. src/crypto/x509/parser.go

    			}
    		}
    
    		return nil
    	})
    
    	return
    }
    
    func parseAuthorityKeyIdentifier(e pkix.Extension) ([]byte, error) {
    	// RFC 5280, Section 4.2.1.1
    	if e.Critical {
    		// Conforming CAs MUST mark this extension as non-critical
    		return nil, errors.New("x509: authority key identifier incorrectly marked critical")
    	}
    	val := cryptobyte.String(e.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    type keyShare struct {
    	group CurveID
    	data  []byte
    }
    
    // TLS 1.3 PSK Key Exchange Modes. See RFC 8446, Section 4.2.9.
    const (
    	pskModePlain uint8 = 0
    	pskModeDHE   uint8 = 1
    )
    
    // TLS 1.3 PSK Identity. Can be a Session Ticket, or a reference to a saved
    // session. See RFC 8446, Section 4.2.11.
    type pskIdentity struct {
    	label               []byte
    	obfuscatedTicketAge uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		}
    	}
    
    	return dwarfSecInfo{syms: []loader.Sym{fs}}
    }
    
    /*
     *  Walk DWarfDebugInfoEntries, and emit .debug_info
     */
    
    const (
    	COMPUNITHEADERSIZE = 4 + 2 + 4 + 1
    )
    
    func (d *dwctxt) writeUnitInfo(u *sym.CompilationUnit, abbrevsym loader.Sym, infoEpilog loader.Sym) []loader.Sym {
    	syms := []loader.Sym{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    func TestNullFloat64Param(t *testing.T) {
    	spec := nullTestSpec{"nullfloat64", "float64", [6]nullTestRow{
    		{NullFloat64{31.2, true}, 1, NullFloat64{31.2, true}},
    		{NullFloat64{13.1, false}, 1, NullFloat64{0, false}},
    		{-22.9, 1, NullFloat64{-22.9, true}},
    		{NullFloat64{33.81, true}, 1, NullFloat64{33.81, true}},
    		{NullFloat64{222, false}, 1, NullFloat64{0, false}},
    		{10, NullFloat64{31.2, false}, nil},
    	}}
    	nullTestRun(t, spec)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top