Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 434 for 20something (0.27 sec)

  1. pkg/config/kube/conversion_test.go

    		{
    			name:          "resolves from port name",
    			portName:      "http-something",
    			expectedProto: protocol.HTTP,
    		},
    		{
    			name:          "prefers appProto over portName",
    			portName:      "http-something",
    			appProto:      &https,
    			expectedProto: protocol.HTTPS,
    		},
    		{
    			name:          "resolves from appProto",
    			portName:      "something-httpx",
    			appProto:      &https,
    			expectedProto: protocol.HTTPS,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 15:30:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

            then: 0 * _
        }
    
        class Base {
            @Incubating
            Object doSomething() { null }
        }
    
        interface Iface {}
    
        class Child extends Base implements Serializable, Iface {
            @Nullable
            Object doSomething() { null }
        }
    
        def "walking type hierarchy happens breadth-first"() {
            def visitor = Mock(Types.TypeVisitor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/FixedPatternStepTest.groovy

            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new FixedPatternStep("name", false)
    
            expect:
            step.matches("name")
            step.matches("Name")
            step.matches("NAME")
            !step.matches("")
            !step.matches("something else")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/kube/controllers/queue_test.go

    		handles.Inc()
    		return nil
    	}))
    	q.Add(types.NamespacedName{Name: "something"})
    	stop := make(chan struct{})
    	go q.Run(stop)
    	retry.UntilOrFail(t, q.HasSynced, retry.Delay(time.Microsecond))
    	assert.Equal(t, handles.Load(), 1)
    	q.Add(types.NamespacedName{Name: "something else"})
    	close(stop)
    	assert.NoError(t, q.WaitForClose(time.Second))
    	// event 2 is guaranteed to happen from WaitForClose
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 16:18:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/conversion_test.go

    					"test": "label",
    				},
    			},
    		},
    	}
    
    	wantJSON := `
    		{
          "host":"something.svc.local",
          "trafficPolicy": {
            "loadBalancer":{"simple":"UNSPECIFIED"}
           },
           "subsets": [
             {"name":"foo","labels":{"test":"label"}}
           ]
    		}`
    
    	wantYAML := `host: something.svc.local
    subsets:
    - labels:
        test: label
      name: foo
    trafficPolicy:
      loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/HasPrefixPatternStepTest.groovy

            !step.matches(".a")
            !step.matches(".ab")
            !step.matches(".b")
            !step.matches(".bcd")
            !step.matches("_abc")
            !step.matches("")
            !step.matches("something else")
        }
    
        def "matches name case insensitive"() {
            def step = new HasPrefixPatternStep(".abc", false)
    
            expect:
            step.matches(".abc")
            step.matches(".ABC")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. test/typeparam/issue51367.dir/main.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    )
    
    func main() {
    	a.DoSomething[byte]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 232 bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    @TaskAction
                    void doIt() {
                        assert archiveFileName.get() == "something"
                    }
                }
    
                task myTask(type: MyTask) {
                    conventionMapping('archiveName') { 'not something' }
                    archiveFileName.convention("something")
                }
            """
    
            expect: 'convention mapping is ignored'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                @Ignore
                @RunWith(org.gradle.CustomIgnoredTest.TheRunner.class)
                public class CustomIgnoredTest {
                    static int count = 0;
    
                    public boolean doSomething() {
                        return true;
                    }
    
                    public static class TheRunner extends Runner {
                        List descriptions = new ArrayList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogGeneratorTest.groovy

            versionCatalogFile.text == toPlatformLineSeparators("""$COMMON_START
    [versions]
    group-artifact-v5 = "1.1.1"
    junit-something = "4"
    
    [libraries]
    group-artifact-v5 = { module = "group:artifact_5", version.ref = "group-artifact-v5" }
    junit-something = { module = "JUnit:something", version.ref = "junit-something" }
    """)
        }
    
        def "generates plugin"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top