Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 241 for IMMEDIATE (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/asm/internal/asm/asm.go

    			} else {
    				// Compare register with immediate and jump.
    				prog.AddRestSource(a[1])
    			}
    			break
    		}
    		if p.arch.Family == sys.ARM64 {
    			// Special 3-operand jumps.
    			// a[0] must be immediate constant; a[1] is a register.
    			if a[0].Type != obj.TYPE_CONST {
    				p.errorf("%s: expected immediate constant; found %s", op, obj.Dconv(prog, &a[0]))
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/reloctype.go

    	R_ARM64_PCREL_LDST64
    
    	// R_ARM64_LDST8 sets a LD/ST immediate value to bits [11:0] of a local address.
    	R_ARM64_LDST8
    
    	// R_ARM64_LDST16 sets a LD/ST immediate value to bits [11:1] of a local address.
    	R_ARM64_LDST16
    
    	// R_ARM64_LDST32 sets a LD/ST immediate value to bits [11:2] of a local address.
    	R_ARM64_LDST32
    
    	// R_ARM64_LDST64 sets a LD/ST immediate value to bits [11:3] of a local address.
    	R_ARM64_LDST64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/eventbus/Dispatcher.java

       * matches the original behavior of AsyncEventBus exactly, but is otherwise not especially useful.
       * For async dispatch, an {@linkplain #immediate() immediate} dispatcher should generally be
       * preferable.
       */
      static Dispatcher legacyAsync() {
        return new LegacyAsyncDispatcher();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top