Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 355 for _foobar (0.41 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/PropertiesToDaemonParametersConverterTest.groovy

            def dummyDir = temp.createDir("foobar")
            when:
            converter.convert([(DaemonBuildOptions.JavaHomeOption.GRADLE_PROPERTY): dummyDir.absolutePath], params)
    
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message.contains 'org.gradle.java.home'
            ex.message.contains 'foobar'
        }
    
        def "shows nice message for invalid idle timeout"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/auth_test.go

    		"subpath of path 3": {subpath: "/foo/bar", path: "/foo", expected: true},
    
    		"mismatch 1": {subpath: "/foo", path: "/bar", expected: false},
    		"mismatch 2": {subpath: "/foo", path: "/foobar", expected: false},
    		"mismatch 3": {subpath: "/foobar", path: "/foo", expected: false},
    	}
    
    	for k, tc := range testcases {
    		result := isSubpath(tc.subpath, tc.path)
    		if result != tc.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    							Proxy: &networking.EnvoyFilter_ProxyMatch{ProxyVersion: `foobar`},
    						},
    					},
    				},
    			},
    		},
    		{
    			Meta: config.Meta{Name: "default-priority", Namespace: "testns", GroupVersionKind: gvk.EnvoyFilter},
    			Spec: &networking.EnvoyFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                        artifact source: "customFile-foobar.jar", classifier: "foobar"
                    }
                }
    
    """)
            when:
            fails 'publish'
    
            then:
            failure.assertHasCause("""
    Cannot publish module metadata because an artifact from the 'java' component has been removed. The available artifacts had these problems:
    - customFile-foobar.jar:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID:             uuid.NewUUID(),
    			Name:            "foobar",
    			Namespace:       metav1.NamespaceDefault,
    			ResourceVersion: "18",
    			Labels:          fooBar(),
    		},
    		Spec: v1.ReplicationControllerSpec{
    			Replicas: &size,
    			Selector: fooBar(),
    		},
    	}
    
    	rcName, err := controller.KeyFunc(rc)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/TaskOptionsSpec.groovy

        def defineTaskWithProfileOption() {
            return """
                    abstract class MyTask extends DefaultTask {
                        @Option(option="profile", description="foobar")
                        @Optional
                        @Input
                        abstract Property<String> getProfile()
    
                        @TaskAction
                        void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/foobar.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-foobar
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.foobar.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/runtime/race/testdata/slice_test.go

    	s[0] = new(int)
    	<-c
    }
    
    func TestRacePointerSliceAppendSlice2(t *testing.T) {
    	c := make(chan bool, 1)
    	s := make([]*int, 10)
    	s2foobar := make([]*int, 10)
    	go func() {
    		_ = append(s, s2foobar...)
    		c <- true
    	}()
    	println("WRITE:", &s2foobar[5])
    	s2foobar[5] = nil
    	<-c
    }
    
    func TestNoRaceSliceIndexAccess(t *testing.T) {
    	c := make(chan bool, 1)
    	s := make([]int, 10)
    	v := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 25 23:41:03 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

      }
    
      public void testFindClassesToTest_ignoreUnderscores() {
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class, Foo_Bar.class);
        sanityTests.ignoreClasses(AbstractPackageSanityTests.UNDERSCORE_IN_NAME);
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  10. src/mime/quotedprintable/reader_test.go

    		{in: "foo\nbar", want: "foo\nbar"},
    		{in: "foo\rbar", want: "foo\rbar"},
    		{in: "foo\r\nbar", want: "foo\r\nbar"},
    
    		// Different types of soft line-breaks.
    		{in: "foo=\r\nbar", want: "foobar"},
    		{in: "foo=\nbar", want: "foobar"},
    		{in: "foo=\rbar", want: "foo", err: "quotedprintable: invalid hex byte 0x0d"},
    		{in: "foo=\r\r\r \nbar", want: "foo", err: `quotedprintable: invalid bytes after =: "\r\r\r \n"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top