Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for IMMEDIATE (0.28 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SRAI	$-1, X5, X6			// ERROR "immediate out of range 0 to 63"
    	RORIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRLIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SRAIW	$32, X5, X6			// ERROR "immediate out of range 0 to 31"
    	RORIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    	SLLIW	$-1, X5, X6			// ERROR "immediate out of range 0 to 31"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. test/codegen/compare_and_branch.go

    		dummy()
    	}
    }
    
    // Signed 64-bit comparison with unsigned 8-bit immediate.
    func si64xu8(x chan int64) {
    	// s390x:"CLGIJ\t[$]8, R[0-9]+, [$]128, "
    	for <-x == 128 {
    		dummy()
    	}
    
    	// s390x:"CLGIJ\t[$]6, R[0-9]+, [$]255, "
    	for <-x != 255 {
    		dummy()
    	}
    }
    
    // Signed 32-bit comparison with unsigned 8-bit immediate.
    func si32xu8(x chan int32) {
    	// s390x:"CLIJ\t[$]8, R[0-9]+, [$]255, "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/loop.go

    func loopConditionUntilContext(ctx context.Context, t Timer, immediate, sliding bool, condition ConditionWithContextFunc) error {
    	defer t.Stop()
    
    	var timeCh <-chan time.Time
    	doneCh := ctx.Done()
    
    	if !sliding {
    		timeCh = t.C()
    	}
    
    	// if immediate is true the condition is
    	// guaranteed to be executed at least once,
    	// if we haven't requested immediate execution, delay once
    	if immediate {
    		if ok, err := func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:47:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/delay.go

    // offers all of the functionality of the methods in this package.
    func (fn DelayFunc) Until(ctx context.Context, immediate, sliding bool, condition ConditionWithContextFunc) error {
    	return loopConditionUntilContext(ctx, &variableTimer{fn: fn, new: internalClock.NewTimer}, immediate, sliding, condition)
    }
    
    // Concurrent returns a version of this DelayFunc that is safe for use by multiple goroutines that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	STLXP (R17, R19), (R4), R5      <=>    stlxp w5, x17, x19, [x4]
    	STXPW (R30, R25), (R22), R13    <=>    stxp w13, w30, w25, [x22]
    
    2. Expressions for special arguments.
    
    #<immediate> is written as $<immediate>.
    
    Optionally-shifted immediate.
    
    Examples:
    
    	ADD $(3151<<12), R14, R20     <=>    add x20, x14, #0xc4f, lsl #12
    	ADDW $1864, R25, R6           <=>    add w6, w25, #0x748
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. releasenotes/notes/31403.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 31403
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 03:01:25 UTC 2021
    - 178 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vet_deps.txt

    env GO111MODULE=off
    
    # Issue 30296. Verify that "go vet" uses only immediate dependencies.
    
    # First run fills the cache.
    go vet a
    
    go vet -x a
    ! stderr 'transitive'
    
    -- a/a.go --
    package a
    
    import "b"
    
    func F() {
    	b.F()
    }
    
    -- b/b.go --
    package b
    
    import "transitive"
    
    func F() {
    	transitive.F()
    }
    
    -- transitive/c.go --
    package transitive
    
    func F() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 16:05:30 UTC 2019
    - 354 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
         * @return The downstream projects in the build order, never {@code null}.
         */
        List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/abstract_tensor_handle.h

    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/platform/refcount.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Abstract interface to a Tensor handle in either tracing or immediate
    // execution mode.
    class AbstractTensorHandle : public core::RefCounted {
     protected:
      enum AbstractTensorHandleKind { kGraph, kMlir, kEager, kTfrt, kCustomDevice };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:30:36 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/runtime/sys_loong64.go

    // license that can be found in the LICENSE file.
    
    //go:build loong64
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 15:12:31 UTC 2022
    - 489 bytes
    - Viewed (0)
Back to top