Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 873 for 34$ (0.03 sec)

  1. src/crypto/sha512/sha512block_amd64.s

    //   T2 = BIGSIGMA0(a) + Maj(a, b, c)
    //     BIGSIGMA0(x) = ROTR(28,x) XOR ROTR(34,x) XOR ROTR(39,x)
    //     Maj(x, y, z) = (x AND y) XOR (x AND z) XOR (y AND z)
    #define SHA512T2(a, b, c) \
    	MOVQ	a, DI; \
    	MOVQ	c, BX; \
    	RORQ	$28, DI; \
    	MOVQ	a, DX; \
    	ANDQ	b, BX; \
    	RORQ	$34, DX; \
    	MOVQ	a, CX; \
    	ANDQ	c, CX; \
    	XORQ	DX, DI; \
    	XORQ	CX, BX; \
    	MOVQ	a, DX; \
    	MOVQ	b, CX; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/aliases.gox

    type <type 27 "A4" = <type 28 "T4" <type 29 (? <type -11>, ? <type 2>) <type 30 chan <type 19>>>>>;
    type <type 31 "Ai" = <type -11>>;
    type <type 32 "C0" <type 33 struct { .go.aliases.f1 <type 34 "C1" <type 35 *<type 32>>>; .go.aliases.f2 <type 36 "C2" = <type 34>>; }>>;
    type <type 34>;
    type <type 36>;
    type <type 37 "C5" <type 38 struct { .go.aliases.f <type 39 *<type 40 "C6" = <type 37>>>; }>>;
    type <type 40>;
    type <type 2>;
    type <type 8>;
    type <type 19>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. android-test-app/build.gradle.kts

    @file:Suppress("UnstableApiUsage")
    
    plugins {
      id("com.android.application")
      id("kotlin-android")
    }
    
    android {
      compileSdk = 34
    
      namespace = "okhttp.android.testapp"
    
      testBuildType = "release"
    
      defaultConfig {
        minSdk = 21
        targetSdk = 34
        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
      }
    
      compileOptions {
        targetCompatibility(JavaVersion.VERSION_11)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/html/example_test.go

    package html_test
    
    import (
    	"fmt"
    	"html"
    )
    
    func ExampleEscapeString() {
    	const s = `"Fran & Freddie's Diner" <******@****.***>`
    	fmt.Println(html.EscapeString(s))
    	// Output: &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;******@****.***&gt;
    }
    
    func ExampleUnescapeString() {
    	const s = `&quot;Fran &amp; Freddie&#39;s Diner&quot; &lt;******@****.***&gt;`
    	fmt.Println(html.UnescapeString(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 05:15:22 UTC 2015
    - 619 bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/scope_pod_test.go

    						"resource-2/A": {
    							{NUMANodeAffinity: NewTestBitMask(2), Preferred: true},
    							{NUMANodeAffinity: NewTestBitMask(3, 4), Preferred: false},
    						},
    						"resource-2/B": {
    							{NUMANodeAffinity: NewTestBitMask(2), Preferred: true},
    							{NUMANodeAffinity: NewTestBitMask(3, 4), Preferred: false},
    						},
    					},
    				},
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource-3": nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

         * be declared.
         *
         * @since 3.4
         */
        public static final String API_CONFIGURATION_NAME = JvmConstants.API_CONFIGURATION_NAME;
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block_386.s

    	ADDL	(1*4)(DI), BX
    	MOVL	BX, (1*4)(DI)
    	MOVL	BX, (1*4)(BP)
    	MOVL	(2*4)(BP), CX		// H2 = c + H2
    	ADDL	(2*4)(DI), CX
    	MOVL	CX, (2*4)(DI)
    	MOVL	CX, (2*4)(BP)
    	MOVL	(3*4)(BP), DX		// H3 = d + H3
    	ADDL	(3*4)(DI), DX
    	MOVL	DX, (3*4)(DI)
    	MOVL	DX, (3*4)(BP)
    	MOVL	(4*4)(BP), AX		// H4 = e + H4
    	ADDL	(4*4)(DI), AX
    	MOVL	AX, (4*4)(DI)
    	MOVL	AX, (4*4)(BP)
    	MOVL	(5*4)(BP), BX		// H5 = f + H5
    	ADDL	(5*4)(DI), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

            if (isGradleExecuterVersionLessThan("3.4")) {
                throw new IllegalArgumentException("Cannot set up timestamps on Gradle before 3.4");
            }
            shouldPreserveTimestamps = preserveTimestamps;
        }
    
        @Override
        public void buildJar(File jarFile) {
            String conf = isGradleExecuterVersionLessThan("3.4") ? "compile" : "implementation";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/scope_container_test.go

    						"resource-2/A": {
    							{NUMANodeAffinity: NewTestBitMask(2), Preferred: true},
    							{NUMANodeAffinity: NewTestBitMask(3, 4), Preferred: false},
    						},
    						"resource-2/B": {
    							{NUMANodeAffinity: NewTestBitMask(2), Preferred: true},
    							{NUMANodeAffinity: NewTestBitMask(3, 4), Preferred: false},
    						},
    					},
    				},
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource-3": nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 12 11:25:55 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/internal/notsha256/sha256block_386.s

    	ADDL	(1*4)(DI), BX
    	MOVL	BX, (1*4)(DI)
    	MOVL	BX, (1*4)(BP)
    	MOVL	(2*4)(BP), CX		// H2 = c + H2
    	ADDL	(2*4)(DI), CX
    	MOVL	CX, (2*4)(DI)
    	MOVL	CX, (2*4)(BP)
    	MOVL	(3*4)(BP), DX		// H3 = d + H3
    	ADDL	(3*4)(DI), DX
    	MOVL	DX, (3*4)(DI)
    	MOVL	DX, (3*4)(BP)
    	MOVL	(4*4)(BP), AX		// H4 = e + H4
    	ADDL	(4*4)(DI), AX
    	MOVL	AX, (4*4)(DI)
    	MOVL	AX, (4*4)(BP)
    	MOVL	(5*4)(BP), BX		// H5 = f + H5
    	ADDL	(5*4)(DI), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top