Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,073 for wrappy (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

        // CHECK: %[[control:.*]] = tf_executor.island wraps "tf.A"()
        tf_executor.island wraps "tf.A"() : () -> ()
        // CHECK-NEXT: %[[control_2:.*]] = tf_executor.island(%[[control]]) wraps "tf.B"()
        tf_executor.island wraps "tf.B"() {_parallel_execution_ids = "r1:1"} : () -> ()
        // CHECK-NEXT: %[[control_3:.*]] = tf_executor.island(%[[control_2]]) wraps "tf.C"()
        tf_executor.island wraps "tf.C"() {_parallel_execution_ids = "r1:1,p2:1"} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/interleaved/interleaved.go

    func DevirtualizeAndInlineFunc(fn *ir.Func, profile *pgoir.Profile) {
    	ir.WithFunc(fn, func() {
    		if base.Flag.LowerL != 0 {
    			if inlheur.Enabled() && !fn.Wrapper() {
    				inlheur.ScoreCalls(fn)
    				defer inlheur.ScoreCallsCleanup()
    			}
    			if base.Debug.DumpInlFuncProps != "" && !fn.Wrapper() {
    				inlheur.DumpFuncProps(fn, base.Debug.DumpInlFuncProps)
    			}
    		}
    
    		bigCaller := base.Flag.LowerL != 0 && inline.IsBigFunc(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/Escapers.java

       * UnicodeEscaper.
       *
       * <p>When a {@link CharEscaper} escaper is wrapped by this method it acquires extra behavior with
       * respect to the well-formedness of Unicode character sequences and will throw {@link
       * IllegalArgumentException} when given bad input.
       *
       * @param escaper the instance to be wrapped
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/UniAddress.java

    
    /**
     * <p>
     * Under normal conditions it is not necessary to use
     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

          } else {
            parent->emitOpError("Unsupported wrapper op.");
            return nullptr;
          }
        }
        if (!new_value) {
          return nullptr;
        } else {
          value = new_value;
        }
      }
      return value;
    }
    
    // Find a TPUCompileMlirOp that's before the given `preprocess_op`, under
    // `func`. Allows both ops to be wrapped inside a tf_device.launch or a
    // tf_device.replicate.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/UUID.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.dcerpc;
    
    
    /**
     * UUID type wrapper
     *
     */
    public class UUID extends rpc.uuid_t {
    
        private static int hex_to_bin ( char[] arr, int offset, int length ) {
            int value = 0;
            int ai, count;
    
            count = 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/robustio/robustio.go

    // Copyright 2019 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 robustio wraps I/O functions that are prone to failure on Windows,
    // transparently retrying errors up to an arbitrary timeout.
    //
    // Errors are classified heuristically and retries are bounded, so the functions
    // in this package do not completely eliminate spurious errors. However, they do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/crypto/tls/cache.go

    // multiple Conns. Returned references should not be mutated by callers. Certificates
    // are still safe to use after they are removed from the cache.
    //
    // Certificates are returned wrapped in an activeCert struct that should be held by
    // the caller. When references to the activeCert are freed, the number of references
    // to the certificate in the cache is decremented. Once the number of references
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        boolean isToolingApiLocksBuildActionClasses();
    
        /**
         * Returns the version of the artifact cache layout
         */
        CacheVersion getArtifactCacheLayoutVersion();
    
        /**
         * Returns true if the wrapper from this distribution can execute a build using the specified version.
         */
        boolean wrapperCanExecute(GradleVersion version);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/io/io.go

    type Writer interface {
    	Write(p []byte) (n int, err error)
    }
    
    // Closer is the interface that wraps the basic Close method.
    //
    // The behavior of Close after the first call is undefined.
    // Specific implementations may document their own behavior.
    type Closer interface {
    	Close() error
    }
    
    // Seeker is the interface that wraps the basic Seek method.
    //
    // Seek sets the offset for the next Read or Write to offset,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top