Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for toves (0.07 sec)

  1. test/typeparam/listimp2.dir/a.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: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/partially_decluster_pass.h

    #ifndef TENSORFLOW_COMPILER_JIT_PARTIALLY_DECLUSTER_PASS_H_
    #define TENSORFLOW_COMPILER_JIT_PARTIALLY_DECLUSTER_PASS_H_
    
    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // Clones or moves nodes from within a cluster to outside the cluster if
    // profitable.  There are two reasons why we do this:
    //
    //  - Reducing device-to-host copies.
    //  - Reducing the number of XLA recompilations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 08 01:53:18 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/splice.go

    limitations under the License.
    */
    
    package runtime
    
    import (
    	"bytes"
    	"io"
    )
    
    // Splice is the interface that wraps the Splice method.
    //
    // Splice moves data from given slice without copying the underlying data for
    // efficiency purpose. Therefore, the caller should make sure the underlying
    // data is not changed later.
    type Splice interface {
    	Splice([]byte)
    	io.Writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/lt/stopwords.txt

    mus
    mūsų
    nei
    nes
    net
    nors
    nuo
    o
    pat
    per
    po
    prie
    prieš
    sau
    save
    savęs
    savimi
    savo
    savyje
    su
    tačiau
    tada
    tai
    taip
    tas
    tau
    tave
    tavęs
    tavimi
    tavyje
    ten
    to
    todėl
    tu
    tuo
    už
    visi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 786 bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/FileStore.java

    /**
     * An indexed store that maps a key to a file or directory.
     *
     * Most implementations do not provide locking, which must be coordinated by the caller.
     */
    public interface FileStore<K> {
        /**
         * Moves the given file into the store.
         */
        LocallyAvailableResource move(K key, File source) throws FileStoreException;
    
        /**
         * Adds an entry to the store, using the given action to produce the file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/copy.go

    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = destFile.Close()
    	}()
    
    	_, err = io.Copy(destFile, sourceFile)
    
    	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") {
    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/tpu_parallel_execute_sink_resource_write.cc

    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    #define GEN_PASS_DEF_TPUPARALLELEXECUTESINKRESOURCEWRITEPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // A pass that moves `tf.AssignVariableOp` into a `tf_device.parallel_execute`
    // region if the `tf.AssignVariableOp` is the only consumer of a
    // `tf_device.parallel_execute` result. This will allow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  8. src/runtime/start_line_test.go

    	"runtime"
    	"testing"
    )
    
    // The tests in this file test the function start line metadata included in
    // _func and inlinedCall. TestStartLine hard-codes the start lines of functions
    // in this file. If code moves, the test will need to be updated.
    //
    // The "start line" of a function should be the line containing the func
    // keyword.
    
    func normalFunc() int {
    	return callerStartLine(false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    }
    
    // moveFiles moves files from one directory to another.
    func moveFiles(files map[string]string) error {
    	filesToRecover := make(map[string]string, len(files))
    	for from, to := range files {
    		if err := os.Rename(from, to); err != nil {
    			return rollbackFiles(filesToRecover, err)
    		}
    		filesToRecover[to] = from
    	}
    	return nil
    }
    
    // rollbackFiles moves the files back to the original directory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_boost.txt

    # If 'go get -u' finds an upgrade candidate that isn't viable,
    # but some other upgraded module's requirement moves past it
    # (for example, to a higher prerelease), then we should accept
    # the transitive upgrade instead of trying lower roots.
    
    go get -v -u . example.net/b@v0.1.0
    cmp go.mod go.mod.want
    
    -- go.mod --
    module example
    
    go 1.17
    
    require (
    	example.net/a v0.1.0
    	example.net/b v0.1.0
    	example.net/c v0.1.0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top