Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,613 for a$b (0.03 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/process/ArgWriterTest.groovy

        def "escapes backslash in argument"() {
            when:
            argWriter.args('a\\b', 'a \\ bc')
    
            then:
            writer.toString() == toPlatformLineSeparators('a\\\\b "a \\\\ bc"\n')
        }
    
        def "does not escape characters in windows style"() {
            def argWriter = ArgWriter.windowsStyle(printWriter)
    
            when:
            argWriter.args('a\\b', 'a "\\" bc')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/break4.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = if (a + b > 0) break
                else {
                    consume(a - b)
                    if (a - b > 0) break else consume(a + b)
                }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        break,
        break
      ]
      returnValueType = null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 499 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/util/GradleVersionTest.groovy

            expect:
            canCompareTwoVersions(a, b)
    
            where:
            a      | b
            '0.9'  | '0.8'
            '1.0'  | '0.10'
            '10.0' | '2.1'
            '2.5'  | '2.4'
        }
    
        def canComparePointVersions() {
            expect:
            canCompareTwoVersions(a, b)
    
            where:
            a                   | b
            '0.9.2'             | '0.9.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/path/filepath/example_unix_test.go

    }
    
    func ExampleJoin() {
    	fmt.Println("On Unix:")
    	fmt.Println(filepath.Join("a", "b", "c"))
    	fmt.Println(filepath.Join("a", "b/c"))
    	fmt.Println(filepath.Join("a/b", "c"))
    	fmt.Println(filepath.Join("a/b", "/c"))
    
    	fmt.Println(filepath.Join("a/b", "../../../xyz"))
    
    	// Output:
    	// On Unix:
    	// a/b/c
    	// a/b/c
    	// a/b/c
    	// a/b/c
    	// ../xyz
    }
    
    func ExampleMatch() {
    	fmt.Println("On Unix:")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list == ['a']
        }
    
        def "can add collection at given index"() {
            when:
            list.addAll(0, ['a', 'b'])
    
            then:
            list == ['a', 'b']
    
            when:
            list.addAll(1, ['c', 'd'])
    
            then:
            list == ['a', 'c', 'd', 'b']
        }
    
        def "fires events when elements are added"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/break3.kt

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

    	a, b = order2{{.FuncSuffix}}(data, a, b, swaps {{.ExtraArg}})
    	b, c = order2{{.FuncSuffix}}(data, b, c, swaps {{.ExtraArg}})
    	a, b = order2{{.FuncSuffix}}(data, a, b, swaps {{.ExtraArg}})
    	return b
    }
    
    // medianAdjacent{{.FuncSuffix}} finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                projectsConfigured(":", ":a", ":b")
                problem("Build file 'a/build.gradle.kts': Project ':a' cannot access 'Project.buildDir' functionality on subprojects of project ':'", 2)
            }
        }
    
        def "build script can query basic details of projects in a function called from allprojects block"() {
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = "root"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/optimize.td

    def IsNull : Constraint<CPred<"!$0">>;
    
    // This pattern optimizes:
    //   conv/dot_general + a + b -> conv/dot_general + (a + b)
    //   conv/dot_general - a - b -> conv/dot_general - (a + b)
    //   conv/dot_general + a - b -> conv/dot_general + (a - b)
    //   conv/dot_general - a + b -> conv/dot_general - (a - b)
    foreach OpsTuple = [
        [CHLO_BroadcastAddOp, CHLO_BroadcastAddOp, CHLO_BroadcastAddOp],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 24 02:26:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/arithBoundary_test.go

    	return a - b
    }
    
    //go:noinline
    func div_uint64_ssa(a, b uint64) uint64 {
    	return a / b
    }
    
    //go:noinline
    func mod_uint64_ssa(a, b uint64) uint64 {
    	return a % b
    }
    
    //go:noinline
    func mul_uint64_ssa(a, b uint64) uint64 {
    	return a * b
    }
    
    //go:noinline
    func add_int64_ssa(a, b int64) int64 {
    	return a + b
    }
    
    //go:noinline
    func sub_int64_ssa(a, b int64) int64 {
    	return a - b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 31.3K bytes
    - Viewed (0)
Back to top