Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,112 for a$b (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/test/util/yml/parts_test.go

    func TestSplitWithEmptyPart(t *testing.T) {
    	expected := []string{
    		"a",
    		"b",
    	}
    
    	cases := []struct {
    		name string
    		doc  string
    	}{
    		{
    			name: "beginningNoCR",
    			doc: `---
    a
    ---
    b
    `,
    		},
    		{
    			name: "beginningWithCR",
    			doc: `
    ---
    a
    ---
    b
    `,
    		},
    		{
    			name: "middle",
    			doc: `a
    ---
    ---
    b
    `,
    		},
    		{
    			name: "end",
    			doc: `
    a
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/PotentialMatchTest.groovy

            where:
            expectedLines           | actualLines                               | matchBegins    || contextBody
    
            // Single Mismatches
            ["a", "b", "c"]         | ["a", "b", "d"]                           | 0              || [" [     1: a",
                                                                                                     "       2: b",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithProjectDependenciesIntegrationTest.groovy

    import spock.lang.Issue
    
    class EclipseTestConfigurationsWithProjectDependenciesIntegrationTest extends AbstractEclipseTestSourcesIntegrationTest {
    
        def setup() {
            settingsFile << "include 'a', 'b'"
            file('a/build.gradle') << """
                plugins {
                    id 'eclipse'
                    id 'java-library'
                }
            """
            file('b/build.gradle') << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testdata/smoketest.go

    type B[P any] struct{}
    type _[P interface{}] struct{}
    type _[P B] struct{}
    type _[P B[P]] struct{}
    
    type _[A, B, C any] struct{}
    type _[A, B, C B] struct{}
    type _[A, B, C B[A, B, C]] struct{}
    type _[A1, A2 B1, A3 B2, A4, A5, A6 B3] struct{}
    
    type _[A interface{}] struct{}
    type _[A, B interface{ m() }] struct{}
    
    type _[A, B, C any] struct{}
    
    // in functions
    func _[P any]()
    func _[P interface{}]()
    func _[P B]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:31 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/set_test.go

    	}
    
    	b = NewString("1", "2", "")
    	if a.Equal(b) {
    		t.Errorf("Expected to be not-equal: %v vs %v", a, b)
    	}
    
    	// Check for equality after mutation
    	a = NewString()
    	a.Insert("1")
    	if a.Equal(b) {
    		t.Errorf("Expected to be not-equal: %v vs %v", a, b)
    	}
    
    	a.Insert("2")
    	if a.Equal(b) {
    		t.Errorf("Expected to be not-equal: %v vs %v", a, b)
    	}
    
    	a.Insert("")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/head2.txt

    -- input --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    ✦
    -- gofmt --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    # A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 232 bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTestHelper.groovy

        }
    
        public static void assertCanCallMethods (ExtensibleDynamicObjectTest.Bean bean) {
            assertEquals(bean.javaMethod('a', 'b'), 'java:a.b')
            assertTrue(bean.hasMethod('conventionMethod', 'a', 'b'))
            assertEquals(bean.conventionMethod('a', 'b'), 'convention:a.b')
        }
    
        public static void decorateGroovyBean(bean) {
            Map values = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top