Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for h263 (0.07 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="video/example"/>
      <mime-type type="video/h261">
        <glob pattern="*.h261"/>
      </mime-type>
      <mime-type type="video/h263">
        <glob pattern="*.h263"/>
      </mime-type>
      <mime-type type="video/h263-1998"/>
      <mime-type type="video/h263-2000"/>
      <mime-type type="video/h264">
        <glob pattern="*.h264"/>
      </mime-type>
      <mime-type type="video/iso.segment">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/groovy/maven-repository-stub/build.gradle

    plugins {
        id 'groovy-gradle-plugin'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation "com.github.tomakehurst:wiremock:2.26.3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 157 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/kotlin/maven-repository-stub/build.gradle.kts

    plugins {
        `kotlin-dsl`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("com.github.tomakehurst:wiremock:2.26.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 145 bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/LongMath.java

             * results can exceed 2^63.
             */
            long result = times2ToThe32Mod(aHi * bHi /* < 2^62 */, m); // < m < 2^63
            result += aHi * bLo; // aHi * bLo < 2^63, result < 2^64
            if (result < 0) {
              result = UnsignedLongs.remainder(result, m);
            }
            // result < 2^63 again
            result += aLo * bHi; // aLo * bHi < 2^63, result < 2^64
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/LongMath.java

             * results can exceed 2^63.
             */
            long result = times2ToThe32Mod(aHi * bHi /* < 2^62 */, m); // < m < 2^63
            result += aHi * bLo; // aHi * bLo < 2^63, result < 2^64
            if (result < 0) {
              result = UnsignedLongs.remainder(result, m);
            }
            // result < 2^63 again
            result += aLo * bHi; // aLo * bHi < 2^63, result < 2^64
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VESLG  $24, T_1, T_1              // [h₆₄[2]<<24, 0]
    	VERIMG $-26&63, T_3, MOD26, H_1   // [h₂₆[1], r₂₆[1]]
    	VESRLG $+52&63, T_3, H_2          // [h₂₆[2], r₂₆[2]] - low 12 bits only
    	VERIMG $-14&63, T_4, MOD26, H_3   // [h₂₆[1], r₂₆[1]]
    	VESRLG $40, T_4, H_4              // [h₂₆[4], r₂₆[4]] - low 24 bits only
    	VERIMG $+12&63, T_4, T_0, H_2     // [h₂₆[2], r₂₆[2]] - complete
    	VO     T_1, H_4, H_4              // [h₂₆[4], r₂₆[4]] - complete
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedLongs.java

       */
      public static long divide(long dividend, long divisor) {
        if (divisor < 0) { // i.e., divisor >= 2^63:
          if (compare(dividend, divisor) < 0) {
            return 0; // dividend < divisor
          } else {
            return 1; // dividend >= divisor
          }
        }
    
        // Optimization - use signed division if dividend < 2^63
        if (dividend >= 0) {
          return dividend / divisor;
        }
    
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_FCHMODAT                = 5258
    	SYS_FACCESSAT               = 5259
    	SYS_PSELECT6                = 5260
    	SYS_PPOLL                   = 5261
    	SYS_UNSHARE                 = 5262
    	SYS_SPLICE                  = 5263
    	SYS_SYNC_FILE_RANGE         = 5264
    	SYS_TEE                     = 5265
    	SYS_VMSPLICE                = 5266
    	SYS_MOVE_PAGES              = 5267
    	SYS_SET_ROBUST_LIST         = 5268
    	SYS_GET_ROBUST_LIST         = 5269
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go

    	SYS_RECVMMSG                = 243
    	SYS_ARCH_SPECIFIC_SYSCALL   = 244
    	SYS_WAIT4                   = 260
    	SYS_PRLIMIT64               = 261
    	SYS_FANOTIFY_INIT           = 262
    	SYS_FANOTIFY_MARK           = 263
    	SYS_NAME_TO_HANDLE_AT       = 264
    	SYS_OPEN_BY_HANDLE_AT       = 265
    	SYS_CLOCK_ADJTIME           = 266
    	SYS_SYNCFS                  = 267
    	SYS_SETNS                   = 268
    	SYS_SENDMMSG                = 269
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_FCHMODAT                = 5258
    	SYS_FACCESSAT               = 5259
    	SYS_PSELECT6                = 5260
    	SYS_PPOLL                   = 5261
    	SYS_UNSHARE                 = 5262
    	SYS_SPLICE                  = 5263
    	SYS_SYNC_FILE_RANGE         = 5264
    	SYS_TEE                     = 5265
    	SYS_VMSPLICE                = 5266
    	SYS_MOVE_PAGES              = 5267
    	SYS_SET_ROBUST_LIST         = 5268
    	SYS_GET_ROBUST_LIST         = 5269
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top