Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 305 for _foobar (0.35 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            where:
            notation << [
                    "foo:bar",
                    "foo:bar:",
                    "foo::1.0",
                    ":bar:1.0"
            ]
        }
    
        def "invalid string notation #notation is reported for lenient parser"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/credentialprovider/plugin/plugin_test.go

    			request: &credentialproviderapi.CredentialProviderRequest{
    				Image: "test.registry.io/foobar",
    			},
    			expectedData: []byte(`{"kind":"CredentialProviderRequest","apiVersion":"credentialprovider.kubelet.k8s.io/v1alpha1","image":"test.registry.io/foobar"}
    `),
    			expectedErr: false,
    		},
    		{
    			name:       "successful with v1beta1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
Back to top