Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,246 for moveWB (0.14 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/variable.cc

                       ImmediateTensorHandlePtr handle)
        : TensorHandleConvertible(std::move(handle)),
          name_(name.has_value() ? *name : "Variable"),
          dtype_(dtype),
          shape_(shape),
          ctx_(ctx) {}
    
    Variable::~Variable() {
      // If the handle is null (perhaps because variable was std::moved from), then
      // we don't have to do anything.
      if (handle_ == nullptr) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 08 20:55:40 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  2. test/typeparam/list2.go

    }
    
    // MoveToFront moves element e to the front of list l.
    // If e is not an element of l, the list is not modified.
    // The element must not be nil.
    func (l *_List[T]) MoveToFront(e *_Element[T]) {
    	if e.list != l || l.root.next == e {
    		return
    	}
    	// see comment in _List.Remove about initialization of l
    	l.move(e, &l.root)
    }
    
    // MoveToBack moves element e to the back of list l.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

                skipMe = new ArrayList<>(3);
              }
              if (!foundAndRemovedExactReference(skipMe, moved.toTrickle)) {
                forgetMeNot.add(moved.toTrickle);
              }
              if (!foundAndRemovedExactReference(forgetMeNot, moved.replaced)) {
                skipMe.add(moved.replaced);
              }
            }
            cursor--;
            nextCursor--;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

        }
    
        public interface MovedDirectoryHandler {
            /**
             * Stop watching the moved directories that have been moved without any notifications.
             *
             * When a directory is moved, then under some circumstances there won't be any notifications.
             *
             * On Windows when watched directories are moved, the OS does not send a notification,
             * even though the VFS should be updated.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example2/doc.go

    // +k8s:deepcopy-gen=package
    // +groupName=example2.k8s.io
    //
    // package example2 contains an example API whose internal version is defined in
    // another group ("example"). This happens if a type is moved to a different
    // group. It's not recommended to move types across groups, though Kubernetes
    // have a few cases due to historical reasons. This package is for tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 13 20:55:33 UTC 2017
    - 1007 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/copy.go

    	return err
    }
    
    // MoveFile moves a file from src to dest.
    func MoveFile(src, dest string) error {
    	err := os.Rename(src, dest)
    	if err != nil && strings.Contains(err.Error(), "invalid cross-device link") {
    		// When calling os.Rename(), an "invalid cross-device link" error may occur
    		// if the source and destination files are on different file systems.
    		// In this case, the file is moved by copying and then deleting the source file,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 01:42:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/merge_control_flow.cc

              new_if_op.getResult(new_return_index++));
        }
      }
    }
    
    // Update the moved op list to remove old IfRegions from the list and add new
    // merged IfRegions. `old_to_new_IfRegions_map` refers to a map from old
    // IfRegion to new merged IfRegion. `moved_ops_list` refers to the list of ops
    // to be moved after new merged IfRegion.
    void UpdateMovedOpList(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

      Cleanup(Cleanup&& src)  // NOLINT
          : released_(src.is_released()), f_(src.release()) {}
    
      // Implicitly move-constructible from any compatible Cleanup<G>.
      // The source will be released as if src.release() were called.
      // A moved-from Cleanup can be safely destroyed or reassigned.
      template <typename G>
      Cleanup(Cleanup<G>&& src)  // NOLINT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 11:16:00 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/AbstractTestDescriptor.java

        @Override
        public String getClassName() {
            return null;
        }
    
        /**
         * Returns the method name for this test, if any.
         * It should be in TestDescriptor, but moved here for backward compatibility
         *  TODO: move it to TestDescriptor interface with 9.0
         *
         * @return The method name. May return null.
         * @since 8.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                    try {
                        java.nio.file.Files.move(unpackedRoot.dir.toPath(), installFolder.toPath(), StandardCopyOption.ATOMIC_MOVE);
                    } catch (AtomicMoveNotSupportedException e) {
                        // In theory, we should never hit this code, but some more obscure file systems or OSes may not support atomic moves
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top