Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for toves (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultClasspathBuilder.java

    import java.nio.file.StandardCopyOption;
    
    /**
     * Default implementation of {@link ClasspathBuilder} that is registered also as a service.
     * <p>
     * This implementation first writes Jar file to a temp file and then moves the result to the destination file.
     * You can use {@link InPlaceClasspathBuilder} if you want to avoid this indirection and write directly to the destination file.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime_cache.go

    	}, nil
    }
    
    // runtimeCache caches a list of pods. It records a timestamp (cacheTime) right
    // before updating the pods, so the timestamp is at most as new as the pods
    // (and can be slightly older). The timestamp always moves forward. Callers are
    // expected not to modify the pods returned from GetPods.
    type runtimeCache struct {
    	sync.Mutex
    	// The underlying container runtime used to update the cache.
    	getter podsGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.h

    // whose value is broacast to all replicas.
    std::unique_ptr<mlir::OperationPass<mlir::func::FuncOp>>
    CreateHoistBroadcastReadPass();
    
    // Creates a pass that moves broadcasts from TF host ops to XLA code, encoded as
    // XlaAllReduces. This enables use of the device network for broadcasts, which
    // is faster.
    std::unique_ptr<mlir::OperationPass<mlir::func::FuncOp>>
    CreateXlaBroadcastPass();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/poll/splice_linux.go

    		if n > 0 {
    			written += int64(n)
    			remain -= int64(n)
    			p.data -= n
    		}
    	}
    	if err != nil {
    		return written, handled, err
    	}
    	return written, true, nil
    }
    
    // spliceDrain moves data from a socket to a pipe.
    //
    // Invariant: when entering spliceDrain, the pipe is empty. It is either in its
    // initial state, or splicePump has emptied it previously.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/tighten.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import "cmd/compile/internal/base"
    
    // tighten moves Values closer to the Blocks in which they are used.
    // This can reduce the amount of register spilling required,
    // if it doesn't also create more live values.
    // A Value can be moved to any block that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. ci/official/wheel_test/README.md

    to the actual TensorFlow wheel.
    3. Creates a `requirements_lock_<python_version>.txt` file.
    4. Updates the `requirements_lock_<python_version>.txt` file using
    a Bazel command.
    5. Moves the updated `requirements_lock_<python_version>.txt` file
    to the `../wheel_test/` directory.
    
    
    ### How it Works in the Presubmit Job
    
    `_requirements_lock` files will be generated by the presubmit job. A detailed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    // The union authorizer iterates over each subauthorizer and returns the first
    // decision that is either an Allow decision or a Deny decision. If a
    // subauthorizer returns a NoOpinion, then the union authorizer moves onto the
    // next authorizer or, if the subauthorizer was the last authorizer, returns
    // NoOpinion as the aggregate decision. I.e. union authorizer creates an
    // aggregate decision and supports short-circuit allows and denies from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

    }
    
    def XlaBroadcastPass : Pass<"tf-xla-broadcast", "mlir::func::FuncOp"> {
      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // replace mixed-type convolution and matmul cast hacks by XLA Conv2DOp and
    // MatmulOp.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplaceCastHacksWithTFXLAOpsPass();
    
    // Creates a pass that moves & merges initializer function's ops into the @main
    // function. This pass should be run on a valid tf_executor dialect. The control
    // output of the initializer function for non-variable resource initialization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/container/ring/ring.go

    	}
    	return r.next
    }
    
    // Prev returns the previous ring element. r must not be empty.
    func (r *Ring) Prev() *Ring {
    	if r.next == nil {
    		return r.init()
    	}
    	return r.prev
    }
    
    // Move moves n % r.Len() elements backward (n < 0) or forward (n >= 0)
    // in the ring and returns that ring element. r must not be empty.
    func (r *Ring) Move(n int) *Ring {
    	if r.next == nil {
    		return r.init()
    	}
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top