Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for amSet (0.06 sec)

  1. src/time/format.go

    			switch p {
    			case "PM":
    				pmSet = true
    			case "AM":
    				amSet = true
    			default:
    				err = errBad
    			}
    		case stdpm:
    			if len(value) < 2 {
    				err = errBad
    				break
    			}
    			p, value = value[0:2], value[2:]
    			switch p {
    			case "pm":
    				pmSet = true
    			case "am":
    				amSet = true
    			default:
    				err = errBad
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. architecture/standards/0001-use-architectural-decision-records.md

    ### Format
    
    The format for ADR should follow this template:
    
    ```markdown
    # ADR-000X - Title
    
    ## Date
    
    20YY-MM-DD
    
    ## Context
    
    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
    aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    	ASFENCEVMA
    
    	//
    	// RISC-V Bit-Manipulation ISA-extensions (1.0)
    	//
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x6, 0x0, 160, 0x5}
    	case AMAXU:
    		return &inst{0x33, 0x7, 0x0, 160, 0x5}
    	case AMIN:
    		return &inst{0x33, 0x4, 0x0, 160, 0x5}
    	case AMINU:
    		return &inst{0x33, 0x5, 0x0, 160, 0x5}
    	case AMRET:
    		return &inst{0x73, 0x0, 0x2, 770, 0x18}
    	case AMUL:
    		return &inst{0x33, 0x0, 0x0, 32, 0x1}
    	case AMULH:
    		return &inst{0x33, 0x1, 0x0, 32, 0x1}
    	case AMULHSU:
    		return &inst{0x33, 0x2, 0x0, 32, 0x1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top