Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 415 for strides (0.05 seconds)

  1. tensorflow/c/eager/dlpack_test.cc

      dltensor_in->dtype = {kDLFloat, 32, 1};
      dltensor_in->shape = shape.data();
      dltensor_in->strides = strides.data();
      TFE_TensorHandle* handle = TFE_HandleFromDLPack(&dlm_in, status, ctx);
      ASSERT_NE(handle, nullptr)
          << TF_Message(status) << " (shape=[" << absl::StrJoin(shape, ",")
          << "], strides=[" << absl::StrJoin(strides, ",") << "])";
    
      auto* dlm_out =
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Jun 30 03:04:46 GMT 2023
    - 4.4K bytes
    - Click Count (0)
  2. src/main/java/jcifs/util/Strings.java

    /**
     * Utility class for string manipulation and conversion operations in the jCIFS library.
     * Provides methods for encoding, decoding, and manipulating strings in SMB operations.
     *
     * @author mbechler
     */
    public final class Strings {
    
        private static final Logger log = LoggerFactory.getLogger(Strings.class);
    
        private static final Charset UNI_ENCODING = Charset.forName("UTF-16LE");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/StripedTest.java

          GcFinalization.awaitClear(weakRef);
        }
      }
    
      private WeakReference<Object> getWeakReferenceToStripe(Striped<?> striped) {
        return new WeakReference<>(striped.get(new Object()));
      }
    
      public void testWeakReadWrite() {
        Striped<ReadWriteLock> striped = Striped.lazyWeakReadWriteLock(1000);
        Object key = new Object();
        Lock readLock = striped.get(key).readLock();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/util/concurrent/StripedTest.java

          GcFinalization.awaitClear(weakRef);
        }
      }
    
      private WeakReference<Object> getWeakReferenceToStripe(Striped<?> striped) {
        return new WeakReference<>(striped.get(new Object()));
      }
    
      public void testWeakReadWrite() {
        Striped<ReadWriteLock> striped = Striped.lazyWeakReadWriteLock(1000);
        Object key = new Object();
        Lock readLock = striped.get(key).readLock();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  5. android-test-app/src/main/res/values/strings.xml

    Yuri Schimke <******@****.***> 1703342811 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 73 bytes
    - Click Count (0)
  6. regression-test/src/main/res/values/strings.xml

    Yuri Schimke <******@****.***> 1605251396 +0000
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Nov 13 07:09:56 GMT 2020
    - 76 bytes
    - Click Count (0)
  7. android-test/src/main/res/values/strings.xml

    Yuri Schimke <******@****.***> 1563315320 +0100
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jul 16 22:15:20 GMT 2019
    - 73 bytes
    - Click Count (0)
  8. src/test/resources/org/codelibs/core/message/strings.properties

    Shinsuke Sugaya <******@****.***> 1419757266 +0900
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sun Dec 28 09:01:06 GMT 2014
    - 10 bytes
    - Click Count (0)
  9. guava-tests/benchmark/com/google/common/util/concurrent/StripedBenchmark.java

        EAGER {
          @Override
          Striped<Lock> get(int stripes) {
            return Striped.lock(stripes);
          }
        },
        LAZY_SMALL {
          @Override
          Striped<Lock> get(int stripes) {
            return new Striped.SmallLazyStriped<>(stripes, LOCK_SUPPLIER);
          }
        },
        LAZY_LARGE {
          @Override
          Striped<Lock> get(int stripes) {
            return new Striped.LargeLazyStriped<>(stripes, LOCK_SUPPLIER);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 4K bytes
    - Click Count (0)
  10. src/main/assemblies/files/fess

        if [ "x$pidpath" != "x" ]; then
            fess_parms="$fess_parms -Dfess.pidfile=$pidpath"
        fi
    
        # Make sure we don't use any predefined locale, as we check some exception message strings and rely on english language
        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Click Count (0)
Back to Top