Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for 4291 (0.07 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/en/docs/release-notes.md

    * 🌐 Add Portuguese translation for `docs/pt/docs/tutorial/header-params.md`. PR [#4921](https://github.com/tiangolo/fastapi/pull/4921) by [@batlopes](https://github.com/batlopes).
    * 🌐 Update `ko/mkdocs.yml` for a missing link. PR [#5020](https://github.com/tiangolo/fastapi/pull/5020) by [@dalinaum](https://github.com/dalinaum).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top