Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,190 for a$b (0.03 sec)

  1. test/codegen/comparisons.go

    	return a == b
    }
    
    func CompareArray3(a, b [3]int16) bool {
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathFactoryTest.groovy

            path.url == 'file://$ROOT_DIR$/a/b'
            path.relPath == '$ROOT_DIR$/a/b'
        }
    
        def createsRelativePathForAnAncestorOfRootDir() {
            factory.addPathVariable('ROOT_DIR', tmpDir.testDirectory)
    
            expect:
            def path = factory.relativePath('ROOT_DIR', tmpDir.testDirectory.parentFile.parentFile.file('a/b'))
            path.url == 'file://$ROOT_DIR$/../../a/b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/model/internal/ImmutableDomainObjectSetTest.groovy

            expect:
            set.collect { it } == ['a', 'b', 'c']
            set.iterator().collect { it } == ['a', 'b', 'c']
        }
    
        def canGetElementsAsAList() {
            ImmutableDomainObjectSet<String> set = new ImmutableDomainObjectSet<String>(['a', 'b', 'c'])
    
            expect:
            set.all == ['a', 'b', 'c']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        assertThat(c).isNotEqualTo(ImmutableSortedMultiset.of("a", "b"));
        assertThat(c).isNotEqualTo(ImmutableSortedMultiset.of("a", "b", "c", "d"));
      }
    
      public void testIterationOrder() {
        Collection<String> c = ImmutableSortedMultiset.of("a", "b", "a");
        assertThat(c).containsExactly("a", "a", "b").inOrder();
      }
    
      public void testMultisetWrites() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. 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)
  6. src/path/filepath/match_test.go

    	{"ab[^b-d]", "abc", false, nil},
    	{"ab[^e-g]", "abc", true, nil},
    	{"a\\*b", "a*b", true, nil},
    	{"a\\*b", "ab", false, nil},
    	{"a?b", "a☺b", true, nil},
    	{"a[^a]b", "a☺b", true, nil},
    	{"a???b", "a☺b", false, nil},
    	{"a[^a][^a][^a]b", "a☺b", false, nil},
    	{"[a-ζ]*", "α", true, nil},
    	{"*[a-ζ]", "A", false, nil},
    	{"a?b", "a/b", false, nil},
    	{"a*b", "a/b", false, nil},
    	{"[\\]a]", "]", true, nil},
    	{"[\\-]", "-", true, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'exclude c'       | [[module: 'c']]                | ['a', 'b', 'd']
            'exclude d'       | [[module: 'd']]                | ['a', 'b', 'c']
            'exclude both'    | [[module: 'c'], [module: 'd']] | ['a', 'b']
            'exclude neither' | [[module: 'other']]            | ['a', 'b', 'c', 'd']
        }
    
        /**
         * Exclude of transitive dependency involved in a dependency cycle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        abstract String getPaid()
    
        def "selects configuration in target project which matches the configuration attributes"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
                    configurations {
                        _compileFreeDebug.attributes { $freeDebug }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ImportTest.kt

            val imports = listOf(
                importOf("a", "b", "C"),
                importOf("a", "b", "c", "d")
            )
            val analysisContext = testContext()
            val result = defaultCodeResolver().collectImports(imports, analysisContext)
    
            assertEquals(
                mapOf(
                    "C" to DefaultFqName("a.b", "C"),
                    "d" to DefaultFqName("a.b.c", "d")
                ),
                result
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/sort/zsortfunc.go

    // order2_func returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.
    func order2_func(data lessSwap, a, b int, swaps *int) (int, int) {
    	if data.Less(b, a) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median_func returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median_func(data lessSwap, a, b, c int, swaps *int) int {
    	a, b = order2_func(data, a, b, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
Back to top