Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for cmovinv (0.18 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (SETNE       (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s))        => (SETNE       (Select1 <types.TypeFlags> blsr))
    (CMOVQNE x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s))        => (CMOVQNE x y (Select1 <types.TypeFlags> blsr))
    (CMOVLNE x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s))        => (CMOVLNE x y (Select1 <types.TypeFlags> blsr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    // This was causing a significant amount of friction around each new
    // release, so we added this bool for the package to //go:linkname
    // instead. The bool is still unfortunate, but it's not as bad as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Offset = offset
    			rem -= size
    			offset += size
    		}
    
    	case ssa.OpPPC64LoweredMove, ssa.OpPPC64LoweredMoveShort:
    
    		bytesPerLoop := int64(32)
    		// This will be used when moving more
    		// than 8 bytes.  Moves start with
    		// as many 8 byte moves as possible, then
    		// 4, 2, or 1 byte(s) as remaining.  This will
    		// work and be efficient for power8 or later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:moving_files_example]]
    == Moving files and directories
    
    Moving files and directories in Gradle is a straightforward process that can be accomplished using several APIs.
    When implementing file-moving logic in your build scripts, it's important to consider file paths, conflicts, and task dependencies.
    
    === Using `File.renameTo()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

          } else if (IsRootExit(out)) {
            ready_exits.push_back(out);
          } else {
            ready.push_back(out);
          }
        }
    
        if (ready.empty()) {
          // Try moving nodes from ready_enters_per_frame and ready_exits to
          // `ready`.
          if (!ready_exits.empty()) {
            // If there are nodes in ready_exits we must process them before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    We recommend upgrading to the latest 4.10.x release to get the most useful warnings and deprecations information before moving to 5.0.
    Avoid upgrading Gradle and migrating to Kotlin DSL at the same time in order to ease troubleshooting in case of potential issues.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	// Having no g can happen during thread creation or thread teardown
    	// (see needm/dropm on Solaris, for example).
    	// This code is like the above sequence but without saving/restoring g
    	// and without worrying about the stack moving out from under us
    	// (because we're on a system stack, not a goroutine stack).
    	// The above code could be used directly if already on a system stack,
    	// but then the only path through this code would be a rare case on Solaris.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    This is the first output from tf.nn.moments,
    or a saved moving average thereof.}]>:$m,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

      if [ -f /sys/fs/cgroup/cgroup.controllers ]; then
        # move the processes from the root group to the /init group,
        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
        # enable controllers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    		status.mergeLastUpdate(update.Options)
    		return ctx, update, true, true, true
    	}
    
    	// if we are already terminating and we only have a running pod, allow the worker
    	// to "start" since we are immediately moving to terminating
    	if update.Options.RunningPod != nil && update.WorkType == TerminatingPod {
    		status.mergeLastUpdate(update.Options)
    		return ctx, update, true, true, true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top