Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for computations (0.18 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_PALB    uint32 = 0xB248 // FORMAT_RRE        PURGE ALB
    	op_PC      uint32 = 0xB218 // FORMAT_S          PROGRAM CALL
    	op_PCC     uint32 = 0xB92C // FORMAT_RRE        PERFORM CRYPTOGRAPHIC COMPUTATION
    	op_PCKMO   uint32 = 0xB928 // FORMAT_RRE        PERFORM CRYPTOGRAPHIC KEY MGMT. OPERATIONS
    	op_PFD     uint32 = 0xE336 // FORMAT_RXY2       PREFETCH DATA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    //    This would lead to thread state thrashing, as the thread that readied the
    //    goroutine can be out of work the very next moment, we will need to park it.
    //    Also, it would destroy locality of computation as we want to preserve
    //    dependent goroutines on the same thread; and introduce additional latency.
    // 3. Unpark an additional thread whenever we ready a goroutine and there is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    func(p *Point, factor float64)
    </pre>
    
    <p>
    However, a function declared this way is not a method.
    </p>
    
    
    <h2 id="Expressions">Expressions</h2>
    
    <p>
    An expression specifies the computation of a value by applying
    operators and functions to operands.
    </p>
    
    <h3 id="Operands">Operands</h3>
    
    <p>
    Operands denote the elementary values in an expression. An operand may be a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top