Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 337 for darn (0.08 sec)

  1. src/internal/cpu/cpu_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package cpu
    
    const CacheLinePadSize = 128
    
    func doinit() {
    	options = []option{
    		{Name: "darn", Feature: &PPC64.HasDARN},
    		{Name: "scv", Feature: &PPC64.HasSCV},
    		{Name: "power9", Feature: &PPC64.IsPOWER9},
    	}
    
    	osinit()
    }
    
    func isSet(hwc uint, value uint) bool {
    	return hwc&value != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 651 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package cpu
    
    const cacheLineSize = 128
    
    func initOptions() {
    	options = []option{
    		{Name: "darn", Feature: &PPC64.HasDARN},
    		{Name: "scv", Feature: &PPC64.HasSCV},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 360 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/anames.go

    	"TD",
    	"SETB",
    	"DWORD",
    	"REMD",
    	"REMDU",
    	"HRFID",
    	"POPCNTD",
    	"POPCNTW",
    	"POPCNTB",
    	"CNTTZW",
    	"CNTTZWCC",
    	"CNTTZD",
    	"CNTTZDCC",
    	"COPY",
    	"PASTECC",
    	"DARN",
    	"MADDHD",
    	"MADDHDU",
    	"MADDLD",
    	"LVEBX",
    	"LVEHX",
    	"LVEWX",
    	"LVX",
    	"LVXL",
    	"LVSL",
    	"LVSR",
    	"STVEBX",
    	"STVEHX",
    	"STVEWX",
    	"STVX",
    	"STVXL",
    	"VAND",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/internal/cpu/cpu.go

    	_      CacheLinePad
    }
    
    // For ppc64(le), it is safe to check only for ISA level starting on ISA v3.00,
    // since there are no optional categories. There are some exceptions that also
    // require kernel support to work (darn, scv), so there are feature bits for
    // those as well. The minimum processor requirement is POWER8 (ISA 2.07).
    // The struct is padded to avoid false sharing.
    var PPC64 struct {
    	_         CacheLinePad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu.go

    //
    // For ppc64/ppc64le, it is safe to check only for ISA level starting on ISA v3.00,
    // since there are no optional categories. There are some exceptions that also
    // require kernel support to work (DARN, SCV), so there are feature bits for
    // those as well. The struct is padded to avoid false sharing.
    var PPC64 struct {
    	_        CacheLinePad
    	HasDARN  bool // Hardware random number generator (requires kernel enablement)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	SLBMFEV R3, R4                  // 7c801ea6
    	SLBMTE R3, R4                   // 7c801b24
    
    	TW $31, R0, R0                  // 7fe00008
    	TD $31, R0, R0                  // 7fe00088
    	DARN $1, R5                     // 7ca105e6
    
    	DCBF (R3)(R4)                   // 7c0418ac
    	DCBF (R3)(R0)                   // 7c0018ac
    	DCBF (R3)                       // 7c0018ac
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	CMPRB:          "cmprb",
    	CNTTZD:         "cnttzd",
    	CNTTZDCC:       "cnttzd.",
    	CNTTZW:         "cnttzw",
    	CNTTZWCC:       "cnttzw.",
    	COPY:           "copy",
    	CPABORT:        "cpabort",
    	DARN:           "darn",
    	DTSTSFI:        "dtstsfi",
    	DTSTSFIQ:       "dtstsfiq",
    	EXTSWSLI:       "extswsli",
    	EXTSWSLICC:     "extswsli.",
    	LDAT:           "ldat",
    	LWAT:           "lwat",
    	LXSD:           "lxsd",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/response-cookies.md

    ## Eine `Response` direkt zurückgeben
    
    Sie können Cookies auch erstellen, wenn Sie eine `Response` direkt in Ihrem Code zurückgeben.
    
    Dazu können Sie eine Response erstellen, wie unter [Eine Response direkt zurückgeben](response-directly.md){.internal-link target=_blank} beschrieben.
    
    Setzen Sie dann Cookies darin und geben Sie sie dann zurück:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. gradle-dark-green-primary.png

    gradle-dark-green-primary.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:43:55 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/https.md

    <img src="/img/deployment/https/https01.svg">
    
    ### TLS-Handshake-Start
    
    Der Browser kommuniziert dann mit dieser IP-Adresse über **Port 443** (den HTTPS-Port).
    
    Der erste Teil der Kommunikation besteht lediglich darin, die Verbindung zwischen dem Client und dem Server herzustellen und die zu verwendenden kryptografischen Schlüssel usw. zu vereinbaren.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top