Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for asSet (0.09 sec)

  1. src/cmd/internal/obj/wasm/wasmobj.go

    	for name, reg := range Register {
    		registerNames[reg-MINREG] = name
    	}
    }
    
    func rconv(r int) string {
    	return registerNames[r-MINREG]
    }
    
    var unaryDst = map[obj.As]bool{
    	ASet:          true,
    	ATee:          true,
    	ACall:         true,
    	ACallIndirect: true,
    	ABr:           true,
    	ABrIf:         true,
    	ABrTable:      true,
    	AI32Store:     true,
    	AI64Store:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/utils_test.go

    		},
    		{
    			name:     "only the second has a nil start time",
    			input:    []*batchv1.Job{aSet, bNil},
    			expected: []*batchv1.Job{aSet, bNil},
    		},
    		{
    			name:     "both have non-nil, equal start time",
    			input:    []*batchv1.Job{bSet, aSet},
    			expected: []*batchv1.Job{aSet, bSet},
    		},
    		{
    			name:     "both have non-nil, different start time",
    			input:    []*batchv1.Job{aSetLater, bSet},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    - cloud.google.com/go/appengine: v1.7.1 → v1.8.1
    - cloud.google.com/go/area120: v0.7.1 → v0.8.1
    - cloud.google.com/go/artifactregistry: v1.13.0 → v1.14.1
    - cloud.google.com/go/asset: v1.13.0 → v1.14.1
    - cloud.google.com/go/assuredworkloads: v1.10.0 → v1.11.1
    - cloud.google.com/go/automl: v1.12.0 → v1.13.1
    - cloud.google.com/go/baremetalsolution: v0.5.0 → v1.1.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/a.out.go

    const (
    	/* mark flags */
    	DONE          = 1 << iota
    	PRESERVEFLAGS // not allowed to clobber flags
    )
    
    /*
     *	wasm
     */
    const (
    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    	ATee
    	ANot // alias for I32Eqz
    
    	// The following are low-level WebAssembly instructions.
    	// Their order matters, since it matches the opcode encoding.
    	// Gaps in the encoding are indicated by comments.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - cloud.google.com/go/apigeeregistry: v0.6.0
    - cloud.google.com/go/appengine: v1.7.1
    - cloud.google.com/go/area120: v0.7.1
    - cloud.google.com/go/artifactregistry: v1.13.0
    - cloud.google.com/go/asset: v1.13.0
    - cloud.google.com/go/assuredworkloads: v1.10.0
    - cloud.google.com/go/automl: v1.12.0
    - cloud.google.com/go/baremetalsolution: v0.5.0
    - cloud.google.com/go/batch: v0.7.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // reviews : 2013-09-13 Dog Beach, LLC
    reviews
    
    // rexroth : 2015-06-18 Robert Bosch GMBH
    rexroth
    
    // rich : 2013-11-21 iRegistry GmbH
    rich
    
    // richardli : 2015-05-14 Pacific Century Asset Management (HK) Limited
    richardli
    
    // ricoh : 2014-11-20 Ricoh Company, Ltd.
    ricoh
    
    // ril : 2015-04-02 Reliance Industries Limited
    ril
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    	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)
  8. src/cmd/internal/obj/riscv/inst.go

    	case ASRAI:
    		return &inst{0x13, 0x5, 0x0, 1024, 0x20}
    	case ASRAIW:
    		return &inst{0x1b, 0x5, 0x0, 1024, 0x20}
    	case ASRAW:
    		return &inst{0x3b, 0x5, 0x0, 1024, 0x20}
    	case ASRET:
    		return &inst{0x73, 0x0, 0x2, 258, 0x8}
    	case ASRL:
    		return &inst{0x33, 0x5, 0x0, 0, 0x0}
    	case ASRLI:
    		return &inst{0x13, 0x5, 0x0, 0, 0x0}
    	case ASRLIW:
    		return &inst{0x1b, 0x5, 0x0, 0, 0x0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. RELEASE.md

            Kronecker Product.
        *   Allow LinearOperator to broadcast.
        *   SavedModelBuilder will now deduplicate asset names that point to files
            with the same basename and the same contents. Note that this may result
            in new asset files included in SavedModels in cases where assets with
            the same name but different contents were previously overwriting each
            other.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/wasm/ssa.go

    }
    
    func getReg(s *ssagen.State, reg int16) {
    	p := s.Prog(wasm.AGet)
    	p.From = obj.Addr{Type: obj.TYPE_REG, Reg: reg}
    }
    
    func setReg(s *ssagen.State, reg int16) {
    	p := s.Prog(wasm.ASet)
    	p.To = obj.Addr{Type: obj.TYPE_REG, Reg: reg}
    }
    
    func loadOp(t *types.Type) obj.As {
    	if t.IsFloat() {
    		switch t.Size() {
    		case 4:
    			return wasm.AF32Load
    		case 8:
    			return wasm.AF64Load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top