Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 344 for a$b (0.04 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

            conversions[diagnostic] = creator
        }
    
        fun <A, B> add(diagnostic: KtDiagnosticFactory2<A, B>, creator: KaFirDiagnostic2Creator<A, B>) {
            conversions[diagnostic] = creator
        }
    
        fun <A, B, C> add(diagnostic: KtDiagnosticFactory3<A, B, C>, creator: KaFirDiagnostic3Creator<A, B, C>) {
            conversions[diagnostic] = creator
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/crypto/md5/md5block.go

    		d = a + bits.RotateLeft32((a^b^c)+d+x4+0x4bdecfa9, 11)
    		c = d + bits.RotateLeft32((d^a^b)+c+x7+0xf6bb4b60, 16)
    		b = c + bits.RotateLeft32((c^d^a)+b+xa+0xbebfbc70, 23)
    		a = b + bits.RotateLeft32((b^c^d)+a+xd+0x289b7ec6, 4)
    		d = a + bits.RotateLeft32((a^b^c)+d+x0+0xeaa127fa, 11)
    		c = d + bits.RotateLeft32((d^a^b)+c+x3+0xd4ef3085, 16)
    		b = c + bits.RotateLeft32((c^d^a)+b+x6+0x04881d05, 23)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            where:
            expectedLines           | actualLines
            ["a", "b", "c"]         | ["a", "b", "c"]
            ["a"]                   | ["a", "b"]
            ["a"]                   | ["b", "a"]
            ["a"]                   | ["b", "a", "c"]
            ["b", "c"]              | ["a", "b", "c", "d"]
            ["b", "c"]              | ["a", "b", "c", "d", "b", "c", "e"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecsTest.groovy

        def "can match order exactly (#executedTasks)"() {
            def spec = exact(':a', ':b', ':c')
    
            when:
            spec.assertMatches(-1, executedTasks)
    
            then:
            noExceptionThrown()
    
            where:
            executedTasks << [
                [':a', ':b', ':c'],
                [':a', ':b', ':c', ':d'],
                [':z', ':a', ':b', ':c'],
                [':a', ':z', ':b', ':c'],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

            where:
            elements << [["a"], ["a", "b"]]
        }
    
        def "has a nice toString method"() {
            expect:
            PersistentList.of().toString() == "Nil"
            PersistentList.of("a").toString() == "a"
            PersistentList.of("a", "b").toString() == "a : b"
            PersistentList.of("a", "b", "c").toString() == "a : b : c"
            PersistentList.of("a", "b", "c", "d").toString() == "a : b : c : d"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/net/http/routing_tree_test.go

    	}
    
    	test(getTestTree(), []testCase{
    		{"GET", "", "/a", "/a", nil},
    		{"Get", "", "/b", "", nil},
    		{"Get", "", "/a/b", "/a/b", nil},
    		{"Get", "", "/a/c", "/a/{x}", []string{"c"}},
    		{"Get", "", "/a/b/", "/a/b/{$}", nil},
    		{"Get", "", "/a/b/c", "/a/b/{y}", []string{"c"}},
    		{"Get", "", "/a/b/c/d", "/a/b/{x...}", []string{"c/d"}},
    		{"Get", "", "/g/h/i", "/g/h/i", nil},
    		{"Get", "", "/g/h/j", "/g/{x}/j", []string{"h"}},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

        @Rule
        public final BlockingHttpServer blockingServer = new BlockingHttpServer()
    
        def setup() {
            blockingServer.start()
    
            createDirs("a", "b", "c")
            settingsFile << """
                include 'a', 'b', 'c'
            """
            buildFile << """
                allprojects {
                    task ping {
                        def projectName = project.name
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

    }
    """
            executer.withArgument('--info')
        }
    
        def "project dependency c->[a,b]"() {
            projectDependency from: 'c', to: ['a', 'b']
            when:
            run ':c:build'
    
            then:
            jarsBuilt 'a', 'b', 'c'
            depsCopied 'a', []
            depsCopied 'b', []
            depsCopied 'c', ['a', 'b']
        }
    
        def "project dependency c->b->a"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/crypto/sha1/sha1block_386.s

    	LEAL	const(e)(SI*1), e
    
    #define ROUND1(a, b, c, d, e, index) \
    	LOAD(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND1x(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND2(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC2(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x6ED9EBA1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/break2.kt

    fun foo(a: Int): Int {
        val b: Int = 1
        for (n in 1..a) {
            <expr>if (a + b > 0) break
            consume(a - b)
            if (a - b > 0) break
            consume(a + b)</expr>
        }
        return 1
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 228 bytes
    - Viewed (0)
Back to top