Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for notfoo (0.15 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    classpath = files()
                }
                dependencies {
                    implementation("org:foo:1.0") {
                        artifact {
                            name = "notfoo"
                        }
                    }
                }
    
                publishing {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				nonresourceRequest("verb1").URL("/notfoo").New():         false,
    				nonresourceRequest("verb1").URL("/notfoo/bar").New():     false,
    				nonresourceRequest("verb1").URL("/notfoo/baz").New():     false,
    				nonresourceRequest("verb1").URL("/notfoo/bar/one").New(): false,
    				nonresourceRequest("verb1").URL("/notfoo/baz/one").New(): false,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    						{
    							Properties: map[string]NestedValueValidation{
    								"notfoo": {
    									ValueValidation: ValueValidation{
    										MinLength: ptr.To[int64](2),
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			error: `properties[notfoo]: Required value: because it is defined in allOf[0].properties[notfoo]`,
    		},
    		{
    			name: "allowed items in valuevalidation, and in structure",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    		// But subdomains should work:
    		{"www-authenticate", "http://foo.com/", "http://foo.com/", true},
    		{"www-authenticate", "http://foo.com/", "http://sub.foo.com/", true},
    		{"www-authenticate", "http://foo.com/", "http://notfoo.com/", false},
    		{"www-authenticate", "http://foo.com/", "https://foo.com/", true},
    		{"www-authenticate", "http://foo.com:80/", "http://foo.com/", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ----
    dependencies {
        implementation("org:foo:1.0") {
            artifact {
                name = "notfoo"
            }
        }
    }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    dependencies {
        implementation("org:foo:1.0") {
            artifact {
                name = "notfoo"
            }
        }
    }
    ----
    ======
    =====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/crypto/x509/verify_test.go

    		// other checks however.
    		name:        "LeafInRootsInvalid",
    		leaf:        selfSigned,
    		roots:       []string{selfSigned},
    		currentTime: 1471624472,
    		dnsName:     "notfoo.example",
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate is valid for"),
    	},
    	{
    		// An X.509 v1 certificate should not be accepted as an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_swig.txt

    	g := Gcd(x, y)
    	fmt.Println("The gcd of", x, "and", y, "is", g)
    
    	// Manipulate the Foo global variable
    
    	// Output its current value
    	fmt.Println("Foo =", GetFoo())
    
    	// Change its value
    	SetFoo(3.1415926)
    
    	// See if the change took effect
    	fmt.Println("Foo =", GetFoo())
    }
    -- main.swig --
    %module main
    
    %inline %{
    extern int    gcd(int x, int y);
    extern double Foo;
    %}
    -- main_test.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 05 21:29:51 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/TestManagedTypes.java

     * limitations under the License.
     */
    
    package org.gradle.workers.fixtures;
    
    import org.gradle.api.Named;
    
    public class TestManagedTypes {
        public interface ManagedThing {
            String getFoo();
            void setFoo(String foo);
        }
    
        public interface ImmutableManagedThing extends Named {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 885 bytes
    - Viewed (0)
  9. operator/pkg/util/yaml_test.go

    		diff2  string
    		expect string
    	}{
    		{
    			desc: "1-line-diff",
    			diff1: `hola: yo
    foo: bar
    goo: tar
    `,
    			diff2: `hola: yo
    foo: bar
    notgoo: nottar
    `,
    			expect: ` foo: bar
    -goo: tar
     hola: yo
    +notgoo: nottar
     `,
    		},
    		{
    			desc:   "no-diff",
    			diff1:  `foo: bar`,
    			diff2:  `foo: bar`,
    			expect: ``,
    		},
    		{
    			desc:   "invalid-yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    @Inject abstract ProviderFactory getProviderFactory()
    
                    @Internal abstract Property<String> getOther()
    
                    @Internal Provider<String> getFoo() {
                        return other;
                    }
    
                    @TaskAction
                    void useIt() {
                        assert foo.get() == "foobar"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top