Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for IMMEDIATE (0.25 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. doc/next/5-toolchain.md

    this check, for debugging and experimenting purposes.
    
    <!-- CL 473495 -->
    When building a dynamically linked ELF binary (including PIE binary), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	return err
    }
    
    func deleteMultiClusterSecret(k8s kube.Client, sname string) error {
    	var immediate int64
    
    	return k8s.Kube().CoreV1().Secrets(testSecretNameSpace).Delete(
    		context.TODO(),
    		sname, metav1.DeleteOptions{GracePeriodSeconds: &immediate})
    }
    
    func verifyControllers(t *testing.T, m *Multicluster, expectedControllerCount int, timeoutName string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top