Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for h263 (0.26 sec)

  1. 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)
  2. src/crypto/internal/nistec/fiat/p256_invert.go

    	//	x12     = _111111 << 6 + _111111
    	//	x15     = x12 << 3 + _111
    	//	x16     = 2*x15 + 1
    	//	x32     = x16 << 16 + x16
    	//	i53     = x32 << 15
    	//	x47     = x15 + i53
    	//	i263    = ((i53 << 17 + 1) << 143 + x47) << 47
    	//	return    (x47 + i263) << 2 + 1
    	//
    
    	var z = new(P256Element).Set(e)
    	var t0 = new(P256Element)
    	var t1 = new(P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	z.Square(z)
    	z.Mul(x, z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.7K 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. src/cmd/go/testdata/script/mod_goline.txt

    cp go.mod1 go.mod
    ! go get example.com/a@v1.0.2 go@1.24.2
    stderr '^go: example.com/a@v1.0.2 requires go@1.25, not go@1.24.2$'
    ! go get example.com/a@v1.0.2 go@1.26.3
    stderr '^go: example.com/a@v1.0.2 indirectly requires go@1.27, not go@1.26.3$'
    go get example.com/a@v1.0.2 go@1.28rc1
    go list -f '{{.Module.GoVersion}}'
    stdout 1.28rc1
    go get go@1.24.2
    stderr '^go: downgraded go 1.28rc1 => 1.24.2$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/sigtab_linux_generic.go

    	/* 57 */ {_SigNotify, "signal 57"},
    	/* 58 */ {_SigNotify, "signal 58"},
    	/* 59 */ {_SigNotify, "signal 59"},
    	/* 60 */ {_SigNotify, "signal 60"},
    	/* 61 */ {_SigNotify, "signal 61"},
    	/* 62 */ {_SigNotify, "signal 62"},
    	/* 63 */ {_SigNotify, "signal 63"},
    	/* 64 */ {_SigNotify, "signal 64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_ppc64x.s

    	MTVRD	R5,V1
    	VSPLTB	$7,V1,V1	// Replicate byte across V1
    
    	BLT	cmp16		// Jump to the small string case if it's <32 bytes.
    
    	CMP	R4,$64,CR1
    	MOVD	$16,R11
    	MOVD	R3,R8
    	BLT	CR1,cmp32	// Special case for length 32 - 63
    	MOVD	$32,R12
    	MOVD	$48,R6
    
    	RLDICR  $0,R4,$63-6,R9	// R9 = len &^ 63
    	ADD	R3,R9,R9	// R9 = &s[len &^ 63]
    	ANDCC	$63,R4		// (len &= 63) cmp 0.
    
    	PCALIGN	$16
    loop64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/runtime/sigtab_linux_mipsx.go

    	/*  58 */ {_SigNotify, "signal 58"},
    	/*  59 */ {_SigNotify, "signal 59"},
    	/*  60 */ {_SigNotify, "signal 60"},
    	/*  61 */ {_SigNotify, "signal 61"},
    	/*  62 */ {_SigNotify, "signal 62"},
    	/*  63 */ {_SigNotify, "signal 63"},
    	/*  64 */ {_SigNotify, "signal 64"},
    	/*  65 */ {_SigNotify, "signal 65"},
    	/*  66 */ {_SigNotify, "signal 66"},
    	/*  67 */ {_SigNotify, "signal 67"},
    	/*  68 */ {_SigNotify, "signal 68"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/UnsignedLong.java

       *
       * <p>If the argument is nonnegative, the returned result will be equal to {@code bits},
       * otherwise, the result will be equal to {@code 2^64 + bits}.
       *
       * <p>To represent decimal constants less than {@code 2^63}, consider {@link #valueOf(long)}
       * instead.
       *
       * @since 14.0
       */
      public static UnsignedLong fromLongBits(long bits) {
        // TODO(lowasser): consider caching small values, like Long.valueOf
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedLong.java

       *
       * <p>If the argument is nonnegative, the returned result will be equal to {@code bits},
       * otherwise, the result will be equal to {@code 2^64 + bits}.
       *
       * <p>To represent decimal constants less than {@code 2^63}, consider {@link #valueOf(long)}
       * instead.
       *
       * @since 14.0
       */
      public static UnsignedLong fromLongBits(long bits) {
        // TODO(lowasser): consider caching small values, like Long.valueOf
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_linux_riscv64.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: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
Back to top