Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ballast (0.18 sec)

  1. src/crypto/tls/tls_test.go

    	}
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    		ExtraExtensions: []pkix.Extension{
    			{
    				Id: asn1.ObjectIdentifier{1, 2, 3},
    				// Ballast to inflate the certificate beyond the
    				// regular handshake record size.
    				Value: make([]byte, 65536),
    			},
    		},
    	}
    	cert, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

    td.colFirst, th.colFirst {
        font-size:13px;
    }
    td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
        font-size:13px;
    }
    .constantsSummary th, .packagesSummary th {
        font-size:13px;
    }
    .providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
    .providesSummary td.colLast {
        white-space:normal;
        font-size:13px;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/internal/obj/riscv/obj.go

    )
    
    // encodings contains the encodings for RISC-V instructions.
    // Instructions are masked with obj.AMask to keep indices small.
    var encodings = [ALAST & obj.AMask]encoding{
    
    	// Unprivileged ISA
    
    	// 2.4: Integer Computational Instructions
    	AADDI & obj.AMask:  iIEncoding,
    	ASLTI & obj.AMask:  iIEncoding,
    	ASLTIU & obj.AMask: iIEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    	enc uint32
    }{
    	{REG_MB_SY, 15},
    	{REG_MB_ST, 14},
    	{REG_MB_ISH, 11},
    	{REG_MB_ISHST, 10},
    	{REG_MB_NSH, 7},
    	{REG_MB_NSHST, 6},
    	{REG_MB_OSH, 3},
    	{REG_MB_OSHST, 2},
    }
    
    var oprange [ALAST & obj.AMask][]Optab
    
    var xcmp [C_GOK + 1][C_GOK + 1]bool
    
    var (
    	symdiv  *obj.LSym
    	symdivu *obj.LSym
    	symmod  *obj.LSym
    	symmodu *obj.LSym
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top