Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for unwrapping (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

      // effect analysis to completely explain and apply correct control deps.
      island_op.getControl().dropAllUses();
    
      // Break up all islands by simply creating a new island wrapping each
      // individual sub op. Do not create any control dependencies between the
      // newly created islands.
      SplitIsland(island_op, tf_executor::ControlType::get(&getContext()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/WrappingScheduledExecutorService.java

    /**
     * An abstract {@code ScheduledExecutorService} that allows subclasses to {@linkplain
     * #wrapTask(Callable) wrap} tasks before they are submitted to the underlying executor.
     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * @author Luke Sandberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/escape/ArrayBasedEscaperMapTest.java

        assertEquals(65536, replacementArray.length);
        // The final element should always be non-null.
        assertNotNull(replacementArray[replacementArray.length - 1]);
        // Exhaustively check all mappings (an int index avoids wrapping).
        for (int n = 0; n < replacementArray.length; ++n) {
          char c = (char) n;
          if (replacementArray[n] != null) {
            assertEquals(map.get(c), new String(replacementArray[n]));
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/WrappingScheduledExecutorService.java

    /**
     * An abstract {@code ScheduledExecutorService} that allows subclasses to {@linkplain
     * #wrapTask(Callable) wrap} tasks before they are submitted to the underlying executor.
     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * @author Luke Sandberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. pkg/volume/metrics_cached.go

    // caches the result.
    type cachedMetrics struct {
    	wrapped       MetricsProvider
    	resultError   error
    	resultMetrics *Metrics
    	once          cacheOnce
    }
    
    // NewCachedMetrics creates a new cachedMetrics wrapping another
    // MetricsProvider and caching the results.
    func NewCachedMetrics(provider MetricsProvider) MetricsProvider {
    	return &cachedMetrics{wrapped: provider}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. test/recover4.go

    // return the current value of n. If n is not being flushed to memory
    // after each modification, the result will be a stale value of n.
    //
    // The test is set up by mmapping a 64 kB block of memory and then
    // unmapping a 16 kB hole in the middle of it. Running memcopy
    // on the resulting slice will fault when it reaches the hole.
    
    package main
    
    import (
    	"log"
    	"runtime/debug"
    	"syscall"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. internal/deadlineconn/deadlineconn.go

    }
    
    // WithWriteDeadline sets a new write side net.Conn deadline.
    func (c *DeadlineConn) WithWriteDeadline(d time.Duration) *DeadlineConn {
    	c.writeDeadline = d
    	return c
    }
    
    // New - creates a new connection object wrapping net.Conn with deadlines.
    func New(c net.Conn) *DeadlineConn {
    	return &DeadlineConn{
    		Conn: c,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen.h

    namespace tensorflow {
    namespace tfcompile {
    
    // CodegenOpts specifies code generation options for the generated header file
    // and the generated metadata object file.
    struct CodegenOpts {
      // The name of the generated C++ class, wrapping the generated function.
      string class_name;
    
      // Target triple for the architecture we're targeting.
      string target_triple;
    
      // Namespaces specifies a list of C++ namespaces to add to the generated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 01 22:03:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/errors.go

    	// nextReason is the reason this module depends on the next module in the
    	// stack. Typically either "requires", or "updating to".
    	nextReason string
    }
    
    // NewBuildListError returns a new BuildListError wrapping an error that
    // occurred at a module found along the given path of requirements and/or
    // upgrades, which must be non-empty.
    //
    // The isVersionChange function reports whether a path step is due to an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/AppendableWriter.java

       */
    
      @Override
      public void write(char[] cbuf, int off, int len) throws IOException {
        checkNotClosed();
        // It turns out that creating a new String is usually as fast, or faster
        // than wrapping cbuf in a light-weight CharSequence.
        target.append(new String(cbuf, off, len));
      }
    
      /*
       * Override a few functions for performance reasons to avoid creating unnecessary strings.
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top