Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for a$b (0.05 sec)

  1. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/break5.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = when {
                    a + b > 0 -> break
                    a - b > 0 -> break
                    else -> consume(0)
                }
        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
    - 483 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    		{name: "no object", schema: &schema.Structural{}},
    		{name: "list without schema",
    			obj: map[string]interface{}{
    				"array": []interface{}{"a", "b", "a"},
    			},
    		},
    		{name: "list without items",
    			obj: map[string]interface{}{
    				"array": []interface{}{"a", "b", "a"},
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_overlay.txt

    stdout example.com/b
    ! stdout example.com/c
    
    -- overlay.json --
    {"Replace": {"go.work": "overlaywork"}}
    -- overlaywork --
    use (
        ./a
        ./b
    )
    -- go.work.non-overlay --
    use (
        ./a
        ./b
        ./c
    )
    -- a/go.mod --
    module example.com/a
    -- b/go.mod --
    module example.com/b
    -- c/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            def model = fetchModel(GradleProject)
    
            then:
            model.name == "root"
            model.children.name == ["a", "b"]
    
            and:
            fixture.assertStateStored {
                projectsConfigured(":", ":a", ":b")
                modelsCreated(":", 2)
                modelsCreated(":a", ":b")
            }
        }
    
        private void addConventionPluginImplementation(String targetBuildName, String className) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    	"/":           "/",
    	"/abc":        "/",
    	"/abc/":       "/abc",
    	"/abc/xyz":    "/abc",
    	"/abc/xyz/":   "/abc/xyz",
    	"/a/b/c.html": "/a/b",
    	"":            "/",
    	"strange":     "/",
    	"//":          "/",
    	"/a//b":       "/a/",
    	"/a/./b":      "/a/.",
    	"/a/../b":     "/a/..",
    }
    
    func TestDefaultPath(t *testing.T) {
    	for path, want := range defaultPathTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/internal/fmtsort/sort.go

    	for iter.Next() {
    		sorted = append(sorted, KeyValue{iter.Key(), iter.Value()})
    	}
    	slices.SortStableFunc(sorted, func(a, b KeyValue) int {
    		return compare(a.Key, b.Key)
    	})
    	return sorted
    }
    
    // compare compares two values of the same type. It returns -1, 0, 1
    // according to whether a > b (1), a == b (0), or a < b (-1).
    // If the types differ, it returns -1.
    // See the comment on Sort for the comparison rules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:31:45 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/CompositeDeduplicationCrossVersionSpec.groovy

            rootProject.name = 'root'
            include ':a', ':b'
            """
        }
    
        def "Included builds are deduplicated"() {
            given:
            settingsFile << """
                    includeBuild 'includedBuild1'
                    includeBuild 'includedBuild2'
                """
            multiProjectBuildInSubFolder("includedBuild1", ["a", "b", "c"])
            multiProjectBuildInSubFolder("includedBuild2", ["a", "b", "c"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/languageConstructs/return.txt

      defaultExpressionInfo = null
      hasEscapingJumps = false
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return a + b
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return a + b
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 322 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return2.txt

      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return b,
        return -b,
        return a - b
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return b,
        return -b,
        return a - b
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 380 bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    	b := new(Int).SetBytes(bBytes)
    
    	d := new(Int).GCD(x, y, a, b)
    	x.Mul(x, a)
    	y.Mul(y, b)
    	x.Add(x, y)
    
    	return x.Cmp(d) == 0
    }
    
    // euclidExtGCD is a reference implementation of Euclid's
    // extended GCD algorithm for testing against optimized algorithms.
    // Requirements: a, b > 0
    func euclidExtGCD(a, b *Int) (g, x, y *Int) {
    	A := new(Int).Set(a)
    	B := new(Int).Set(b)
    
    	// A = Ua*a + Va*b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top