Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 241 for IMMEDIATE (0.2 sec)

  1. src/runtime/sys_arm.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // adjust Gobuf as if it executed a call to fn with context ctxt
    // and then did an immediate Gosave.
    func gostartcall(buf *gobuf, fn, ctxt unsafe.Pointer) {
    	if buf.lr != 0 {
    		throw("invalid use of gostartcall")
    	}
    	buf.lr = buf.pc
    	buf.pc = uintptr(fn)
    	buf.ctxt = ctxt
    }
    
    // for testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 05 18:19:46 UTC 2016
    - 521 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_FPReg_6_10, ap_FPReg_11_15, ap_ImmUnsigned_16_21}},
    	{DSCLIQCC, 0xfc0003ff00000000, 0xfc00008500000000, 0x0, // DFP Shift Significand Left Immediate Quad Z22-form (dscliq. FRTp,FRAp,SH)
    		[6]*argField{ap_FPReg_6_10, ap_FPReg_11_15, ap_ImmUnsigned_16_21}},
    	{DSCRI, 0xfc0003ff00000000, 0xec0000c400000000, 0x0, // DFP Shift Significand Right Immediate Z22-form (dscri FRT,FRA,SH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loong64/asm.go

    	if isRequestingLowPageBits(t) {
    		// corresponding immediate field is 12 bits wide
    		return tgt & 0xfff
    	}
    
    	pageDelta := (tgt >> 12) - (pc >> 12)
    	if tgt&0xfff >= 0x800 {
    		// adjust for sign-extended addition of the low bits
    		pageDelta += 1
    	}
    	// corresponding immediate field is 20 bits wide
    	return pageDelta & 0xfffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

        DEFAULT_UAST,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         */
        GENERIC_ARGUMENT,
    
        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         * No projections allowed in immediate arguments
         */
        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/UpdateNowEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    /**
     * Indicates an event that can trigger an immediate update to the console.
     */
    public class UpdateNowEvent extends OutputEvent implements InteractiveEvent {
    
        private final long timestamp;
    
        public UpdateNowEvent(long timestamp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. cmd/metrics-v3-ilm.go

    	ilmTransitionPendingTasksMD         = NewGaugeMD(transitionPendingTasks, "Number of pending ILM transition tasks in the queue")
    	ilmTransitionMissedImmediateTasksMD = NewCounterMD(transitionMissedImmediateTasks, "Number of missed immediate ILM transition tasks")
    	ilmVersionsScannedMD                = NewCounterMD(versionsScanned, "Total number of object versions checked for ILM actions since server start")
    )
    
    // loadILMMetrics - `MetricsLoaderFn` for ILM metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. cmd/erasure-healing_test.go

    		}
    
    		for i := 0; i < nfi.Erasure.ParityBlocks; i++ {
    			erasureDisks[i].Delete(context.Background(), bucket, pathJoin(object, xlStorageFormatFile), DeleteOptions{
    				Recursive: false,
    				Immediate: false,
    			})
    		}
    
    		// Try healing now, it should heal the content properly.
    		_, err = objLayer.HealObject(ctx, bucket, object, "", hopts)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/controller_test.go

    			}(),
    			expectedClaims:  []resourcev1alpha2.ResourceClaim{*structuredParameters(testClaimReserved)},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name: "clear-reserved-immediate-allocation",
    			pods: []*v1.Pod{},
    			key:  claimKey(testClaimReserved),
    			claims: func() []*resourcev1alpha2.ResourceClaim {
    				claim := testClaimReserved.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypeMMAReg               // MMA register
    	TypeSpReg                // special register (depends on Op)
    	TypeImmSigned            // signed immediate
    	TypeImmUnsigned          // unsigned immediate/flag/mask, this is the catch-all type
    	TypeOffset               // signed offset in load/store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    func (Label) IsArg() {}
    func (l Label) String() string {
    	return fmt.Sprintf("%#x", uint32(l))
    }
    
    // Imm represents an immediate number.
    type Imm int64
    
    func (Imm) IsArg() {}
    func (i Imm) String() string {
    	return fmt.Sprintf("%d", int32(i))
    }
    
    // Offset represents a memory offset immediate.
    type Offset int64
    
    func (Offset) IsArg() {}
    func (o Offset) String() string {
    	return fmt.Sprintf("%+d", int32(o))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top