Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,123 for 20something (0.17 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/apis/certificates/v1beta1/defaults_test.go

    			req:    newCSR(kubeletServerPEMOptions, pemOptions{uris: []string{"http://something"}}),
    			usages: kubeletServerUsages,
    			exp:    false,
    		},
    		"does not default to kubelet-serving if it specifies an emailAddress SAN": {
    			req:    newCSR(kubeletServerPEMOptions, pemOptions{emailAddresses: []string{"something"}}),
    			usages: kubeletServerUsages,
    			exp:    false,
    		},
    	}
    	for name, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                import org.gradle.api.DefaultTask
                import org.gradle.api.tasks.TaskAction
    
                class HelloWorld1 extends DefaultTask {
                    @TaskAction
                    void doSomething() {
                        println 'Hello world! (buildSrc)'
                    }
                }
            """
    
            buildFile << plugin.useDeclaration << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

        @Unroll("detects changes to class referenced through a #modifier field")
        def "detects changes to class referenced through a field"() {
            given:
            source """class A {
        $modifier B b;
        void doSomething() {
            Runnable r = b;
            r.run();
        }
    }"""
            source '''abstract class B implements Runnable { }'''
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. 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)
Back to top