Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sysconf (0.48 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	{AMULW, ydivl, Pe, opBytes{0xf7, 04}},
    	{ANEGB, yscond, Pb, opBytes{0xf6, 03}},
    	{ANEGL, yscond, Px, opBytes{0xf7, 03}},
    	{ANEGQ, yscond, Pw, opBytes{0xf7, 03}},
    	{ANEGW, yscond, Pe, opBytes{0xf7, 03}},
    	{obj.ANOP, ynop, Px, opBytes{0, 0}},
    	{ANOTB, yscond, Pb, opBytes{0xf6, 02}},
    	{ANOTL, yscond, Px, opBytes{0xf7, 02}}, // TODO(rsc): yscond is wrong here.
    	{ANOTQ, yscond, Pw, opBytes{0xf7, 02}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___CLOGL_B                       = 0xA01 // 2561
    	SYS___CLOGL_H                       = 0xA02 // 2562
    	SYS_CONJ                            = 0xA03 // 2563
    	SYS___CONJ_B                        = 0xA04 // 2564
    	SYS___CONJ_H                        = 0xA05 // 2565
    	SYS_CONJF                           = 0xA06 // 2566
    	SYS___CONJF_B                       = 0xA07 // 2567
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			anonymizeAddr(&localSysConfig)
    			healthInfo.Sys.SysConfig = append(healthInfo.Sys.SysConfig, localSysConfig)
    			partialWrite(healthInfo)
    
    			peerSysConfig := globalNotificationSys.GetSysConfig(healthCtx)
    			for _, sc := range peerSysConfig {
    				anonymizeAddr(&sc)
    				healthInfo.Sys.SysConfig = append(healthInfo.Sys.SysConfig, sc)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    var needSysmonWorkaround bool = false
    
    // haveSysmon indicates whether there is sysmon thread support.
    //
    // No threads on wasm yet, so no sysmon.
    const haveSysmon = GOARCH != "wasm"
    
    // Always runs without a P, so write barriers are not allowed.
    //
    //go:nowritebarrierrec
    func sysmon() {
    	lock(&sched.lock)
    	sched.nmsys++
    	checkdead()
    	unlock(&sched.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	testAutomaticHTTP2_Serve(t, &tls.Config{NextProtos: []string{"h2"}}, true)
    }
    
    func testAutomaticHTTP2_Serve(t *testing.T, tlsConf *tls.Config, wantH2 bool) {
    	setParallel(t)
    	defer afterTest(t)
    	ln := newLocalListener(t)
    	ln.Close() // immediately (not a defer!)
    	var s Server
    	s.TLSConfig = tlsConf
    	if err := s.Serve(ln); err == nil {
    		t.Fatal("expected an error")
    	}
    	gotH2 := s.TLSNextProto["h2"] != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top