Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,613 for a$b (0.03 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            given:
            mavenRepo.module("org.other", "externalA", "1.2").publish()
            mavenRepo.module("org.other", "externalB", "2.1").publish()
    
            and:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    
            and:
            buildFile << """
    allprojects {
        repositories { maven { url '$mavenRepo.uri' } }
    }
    project(":a") {
        configurations {
            api
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. 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)
  3. src/sort/zsortinterface.go

    // order2 returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a.
    func order2(data Interface, a, b int, swaps *int) (int, int) {
    	if data.Less(b, a) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median(data Interface, a, b, c int, swaps *int) int {
    	a, b = order2(data, a, b, swaps)
    	b, c = order2(data, b, c, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. 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)
  5. test/ken/cplx1.go

    	var b bool
    
    	b = a == C1
    	if b != r {
    		println("param bool 1", a, b, r)
    		panic("fail")
    	}
    
    	b = a != C1
    	if b == r {
    		println("param bool 2", a, b, r)
    		panic("fail")
    	}
    
    	b = C1 == a
    	if b != r {
    		println("param bool 3", a, b, r)
    		panic("fail")
    	}
    
    	b = C1 != a
    	if b == r {
    		println("param bool 4", a, b, r)
    		panic("fail")
    	}
    
    	if r {
    		if a != C1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.4K 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/go/testdata/mod/example.com_ambiguous_a_v1.0.0.txt

    Module example.com/ambiguous/a is a prefix of example.com/a/b.
    It contains package example.com/a/b.
    -- .mod --
    module example.com/ambiguous/a
    
    go 1.16
    
    require example.com/ambiguous/a/b v0.0.0-empty
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/ambiguous/a
    
    go 1.16
    
    require example.com/ambiguous/a/b v0.0.0-empty
    -- b/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 20:54:35 UTC 2020
    - 356 bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    		return Convert_v1alpha1_AdmissionConfiguration_To_apiserver_AdmissionConfiguration(a.(*AdmissionConfiguration), b.(*apiserver.AdmissionConfiguration), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*apiserver.AdmissionConfiguration)(nil), (*AdmissionConfiguration)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. 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)
Back to top