Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for b1 (0.02 sec)

  1. src/cmd/go/internal/mvs/mvs_test.go

    name: req1
    A: B1 C1 D1 E1 F1
    B1: C1 E1 F1
    req A:   B1    D1
    req A C: B1 C1 D1
    
    name: req2
    A: G1 H1
    G1: H1
    H1: G1
    req A:   G1
    req A G: G1
    req A H: H1
    
    name: req3
    M: A1 B1
    A1: X1
    B1: X2
    X1: I1
    X2:
    req M: A1 B1
    
    name: reqnone
    M: Anone B1 D1 E1
    B1: Cnone D1
    E1: Fnone
    build M: M B1 D1 E1
    req M:     B1    E1
    
    name: reqdup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            iprHasModules "buildA.iml",
                "../buildB/buildB.iml",
                "../buildB/b1/buildB-b1.iml",
                "../buildB/b2/b2.iml",
                "../buildC/buildC.iml",
                "../buildC/b1/buildC-b1.iml",
                "../b1/buildA-b1.iml"
    
            imlHasDependencies "buildB-b1", "buildC-b1", "buildA-b1"
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    	// Karatsuba pre-computation
    	VEXT	$8, B0.B16, B0.B16, B1.B16
    	VEOR	B0.B16, B1.B16, B1.B16
    
    	ADD	$14*16, pTbl
    	VST1	[B0.B16, B1.B16], (pTbl)
    	SUB	$2*16, pTbl
    
    	VMOV	B0.B16, B2.B16
    	VMOV	B1.B16, B3.B16
    
    	MOVD	$7, I
    
    initLoop:
    	// Compute powers of H
    	SUBS	$1, I
    
    	VPMULL	B0.D1, B2.D1, T1.Q1
    	VPMULL2	B0.D2, B2.D2, T0.Q1
    	VPMULL	B1.D1, B3.D1, T2.Q1
    	VEOR	T0.B16, T2.B16, T2.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

            then:
            // Need to assert order separately to cater for parallel execution
            executedInOrder ":buildC:jar", ":b1:classes", ":b1:jar"
            executedInOrder ":buildC:jar", ":b2:classes", ":b2:jar"
    
            executedInOrder ":buildC:compileJava", ":buildC:jar", ":b1:compileJava", ":b1:jar"
            executedInOrder ":buildC:compileJava", ":buildC:jar", ":b2:compileJava", ":b2:jar"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            def dir1 = tmpDir.createDir("b1")
            def dir2 = tmpDir.createDir("other/b1")
            def dir3 = tmpDir.createDir("other2/b1")
            def buildDefinition1 = build(dir1, "b1")
            def buildDefinition2 = build(dir2, "b2")
            def buildDefinition3 = build(dir3, "b3")
            def includedBuild1 = expectIncludedBuildAdded("b1", buildDefinition1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    			break
    		}
    
    		// Walk over attributes, counting.
    		n := 0
    		b1 := b // Read from copy of b.
    		b1.uint()
    		b1.uint8()
    		for {
    			tag := b1.uint()
    			fmt := b1.uint()
    			if tag == 0 && fmt == 0 {
    				break
    			}
    			if format(fmt) == formImplicitConst {
    				b1.int()
    			}
    			n++
    		}
    		if b1.err != nil {
    			return nil, b1.err
    		}
    
    		// Walk over attributes again, this time writing them down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_amd64.s

    	MOVOU B0, (16*14)(dst)
    	PSHUFD $78, B0, B1
    	PXOR B0, B1
    	MOVOU B1, (16*15)(dst)
    
    	MOVOU B0, B2
    	MOVOU B1, B3
    	// Now prepare powers of H and pre-computations for them
    	MOVQ $7, AX
    
    initLoop:
    		MOVOU B2, T0
    		MOVOU B2, T1
    		MOVOU B3, T2
    		PCLMULQDQ $0x00, B0, T0
    		PCLMULQDQ $0x11, B0, T1
    		PCLMULQDQ $0x00, B1, T2
    
    		PXOR T0, T2
    		PXOR T1, T2
    		MOVOU T2, B4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            buildB.buildFile << """
                dependencies { implementation project(':b1') }
            """
    
            when:
            execute(buildA, ":dependencies")
    
            then:
            outputContains("""
    runtimeClasspath - Runtime classpath of source set 'main'.
    \\--- org.test:${dependencyName}:1.0 -> project :${buildName}
         \\--- project :${buildName}:b1
    """)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

            given:
            buildA.buildFile << """
                task resolveJars {
                    dependsOn gradle.includedBuild('buildB').task(':b1:resolveJars')
                }
            """
            buildB.buildFile << """
                project(':b1') {
                    dependencies {
                        implementation "org.test:buildC:1.0"
                    }
                    task resolveJars(type: Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
            originalResult.getIdeaProject('buildC').modules.name == ['buildA-buildC']
            originalResult.getIdeaProject('buildD').modules.name == ['buildD', 'buildD-b1', 'buildD-buildC']
    
    
            when: "fetching with Isolated Projects"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top