Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for ballast (0.23 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	AFNEGD
    	AFNEGS
    	AFNED
    	AFNES
    	AMOV
    	AMOVB
    	AMOVBU
    	AMOVF
    	AMOVD
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWU
    	ANEG
    	ANEGW
    	ANOT
    	ASEQZ
    	ASNEZ
    
    	// End marker
    	ALAST
    )
    
    // opSuffix encoding to uint8 which fit into p.Scond
    var rmSuffixSet = map[string]uint8{
    	"RNE": RM_RNE,
    	"RTZ": RM_RTZ,
    	"RDN": RM_RDN,
    	"RUP": RM_RUP,
    	"RMM": RM_RMM,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

     * layer primitives: connections, requests, responses, and streams.
     *
     * This class supports [asynchronous canceling][cancel]. This is intended to have the smallest
     * blast radius possible. If an HTTP/2 stream is active, canceling will cancel that stream but not
     * the other streams sharing its connection. But if the TLS handshake is still in progress then
     * canceling may break the entire connection.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/a.out.go

    	AXVCVUXDSP
    	AXVCVUXWSP
    	AXSMAXJDP
    	AXSMINJDP
    	ALASTAOUT // The last instruction in this list. Also the first opcode generated by ppc64map.
    
    	// aliases
    	ABR   = obj.AJMP
    	ABL   = obj.ACALL
    	ALAST = ALASTGEN // The final enumerated instruction value + 1. This is used to size the oprange table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "signal-exit": "^4.0.1"
          },
          "engines": {
            "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
          }
        },
        "node_modules/yallist": {
          "version": "4.0.0",
          "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
          "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
          "dev": true
        },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  5. docs/fr/docs/index.md

    * <abbr title="aussi connu sous le nom de : serialization, parsing, marshalling">Une conversion</abbr> des données d'entrée : venant du réseau et allant vers les données et types de Python, permettant de lire :
        * le <abbr title="JavaScript Object Notation">JSON</abbr>.
        * <abbr title="en anglais : path parameters">les paramètres du chemin</abbr>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. src/runtime/hash_test.go

    			}
    			var a [16]byte
    			m := make(map[uint16]struct{}, 1<<16)
    			for n := 0; n < 1<<16; n++ {
    				a[i] = byte(n)
    				a[j] = byte(n >> 8)
    				m[uint16(BytesHash(a[:], 0))] = struct{}{}
    			}
    			// N balls in N bins, for N=65536
    			avg := 41427
    			stdDev := 123
    			if len(m) < avg-40*stdDev || len(m) > avg+40*stdDev {
    				t.Errorf("bad number of collisions i=%d j=%d outputs=%d out of 65536\n", i, j, len(m))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer.go

    	// execute concurrently. Normally, this number is just gomaxprocs. However,
    	// during periodic GC cycles it is set to 0 because the system is idle
    	// anyway; there's no need to go full blast on all of GOMAXPROCS.
    	//
    	// The maximum number of idle mark workers is used to prevent new workers
    	// from starting, but it is not a hard maximum. It is possible (but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/asm0.go

    	{obj.ADUFFZERO, C_NONE, C_NONE, C_LBRA, 11, 4, 0, 0, 0}, // same as AJMP
    	{obj.ADUFFCOPY, C_NONE, C_NONE, C_LBRA, 11, 4, 0, 0, 0}, // same as AJMP
    
    	{obj.AXXX, C_NONE, C_NONE, C_NONE, 0, 4, 0, 0, 0},
    }
    
    var oprange [ALAST & obj.AMask][]Optab
    
    var xcmp [C_NCLASS][C_NCLASS]bool
    
    func span0(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on mips")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  9. pkg/apis/batch/validation/validation_test.go

    		`Etc/GMT0`,
    		`Etc/Greenwich`,
    		`Etc/UCT`,
    		`Etc/Universal`,
    		`Etc/UTC`,
    		`Etc/Zulu`,
    		`Europe/Amsterdam`,
    		`Europe/Andorra`,
    		`Europe/Astrakhan`,
    		`Europe/Athens`,
    		`Europe/Belfast`,
    		`Europe/Belgrade`,
    		`Europe/Berlin`,
    		`Europe/Bratislava`,
    		`Europe/Brussels`,
    		`Europe/Bucharest`,
    		`Europe/Budapest`,
    		`Europe/Busingen`,
    		`Europe/Chisinau`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    		ctxt.Diag("alignment value of an instruction must be a power of two and in the range [8, 2048], got %d\n", alignedValue)
    	}
    	return int(-pc & (alignedValue - 1))
    }
    
    var oprange [ALAST & obj.AMask][]Optab
    
    var xcmp [C_NCLASS][C_NCLASS]bool
    
    func span0(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on loong64")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top