Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,190 for a$b (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    		return Convert_core_AWSElasticBlockStoreVolumeSource_To_v1_AWSElasticBlockStoreVolumeSource(a.(*core.AWSElasticBlockStoreVolumeSource), b.(*v1.AWSElasticBlockStoreVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Affinity)(nil), (*core.Affinity)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top