Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,868 for performs (0.15 sec)

  1. src/runtime/atomic_pointer.go

    // because while ptr does not escape, new does.
    // If new is marked as not escaping, the compiler will make incorrect
    // escape analysis decisions about the pointer value being stored.
    
    // atomicwb performs a write barrier before an atomic pointer write.
    // The caller should guard the call with "if writeBarrier.enabled".
    //
    // atomicwb should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/init_mlir.h

    #ifndef TENSORFLOW_COMPILER_MLIR_INIT_MLIR_H_
    #define TENSORFLOW_COMPILER_MLIR_INIT_MLIR_H_
    
    namespace tensorflow {
    
    // Initializer to perform TF's InitMain initialization.
    // InitMain also performs flag parsing and '--' is used to separate flags passed
    // to it: Flags before the first '--' are parsed by InitMain and argc and argv
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 15 11:55:20 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/syscall/flock_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    import "unsafe"
    
    // On AIX, there is no flock() system call.
    
    // FcntlFlock performs a fcntl syscall for the [F_GETLK], [F_SETLK] or [F_SETLKW] command.
    func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 570 bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/IoActions.java

        }
    
        /**
         * Creates an action that itself takes an action that will perform that actual writing to the file.
         *
         * All IO is deferred until the execution of the returned action.
         *
         * @param output The file to write to
         * @param encoding The character encoding to write with
         * @return An action that receives an action that performs the actual writing
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

     * one of the factory methods:
     * <ul>
     *     <li>{@link #unsafe()} would create a lazy wrapper which performs no synchronization at all when calling the supplier: it may be called several times concurrently by different threads. Not thread safe!</li>
     *     <li>{@link #locking()} would create a lazy wrapper which performs locking when calling the supplier: the supplier will only be called once. Reading is done without locking once initialized.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellableConnection.java

     * @see InternalParameterAcceptingConnection
     * @see org.gradle.tooling.internal.protocol.ConnectionVersion4
     */
    public interface InternalCancellableConnection extends InternalProtocolInterface {
        /**
         * Performs some action against a build and returns the requested model.
         *
         * <p>Consumer compatibility: This method is used by all consumer versions from 2.1-rc-1.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            ).astype('f4')
    
          @def_function.function
          def conv2d(self, input_tensor: core.Tensor) -> Mapping[str, core.Tensor]:
            """Performs a 2D convolution operation.
    
            Args:
              input_tensor: Input tensor to perform convolution on.
    
            Returns:
              A map of: output key -> output result.
            """
            scale = [1.0] * self.out_channel_size
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/syscall/flock_linux.go

    package syscall
    
    import "unsafe"
    
    // fcntl64Syscall is usually SYS_FCNTL, but is overridden on 32-bit Linux
    // systems by flock_linux_32bit.go to be SYS_FCNTL64.
    var fcntl64Syscall uintptr = SYS_FCNTL
    
    // FcntlFlock performs a fcntl syscall for the [F_GETLK], [F_SETLK] or [F_SETLKW] command.
    func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error {
    	_, _, errno := Syscall(fcntl64Syscall, fd, uintptr(cmd), uintptr(unsafe.Pointer(lk)))
    	if errno == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 647 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableConfiguration.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Incubating;
    
    /**
     * A {@link Configuration} which performs dependency resolution to build dependency graphs
     * and resolve artifacts.
     *
     * @since 8.4
     */
    @Incubating
    public interface ResolvableConfiguration extends Configuration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 17:16:36 UTC 2023
    - 908 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeWorkGraphPreparer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    /**
     * Performs any initial setup that needs to happen to a build tree work graph prior to scheduling the requested tasks.
     */
    public interface BuildTreeWorkGraphPreparer {
        void prepareToScheduleTasks(BuildTreeWorkGraph.Builder workGraph);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 05:15:11 UTC 2022
    - 903 bytes
    - Viewed (0)
Back to top