Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 312 for buzz (0.42 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            source.addPendingCollection(provider1)
    
            then:
            source.iterator().collect() == ["foo", "bar", "baz"]
    
            when:
            provider1.value = ["buzz", "fizz", "foo"]
    
            then:
            source.iterator().collect() == ["foo", "buzz", "fizz"]
        }
    
        def "adding is not ignored when a realized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tests/common/jwt/jwt_token.go

    	// Payload {
    	//  "aud": [
    	//	  "foo",
    	// 	  "buzz"
    	//  ],
    	//  "exp": 4732994801,
    	//  "iat": 1579394801,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --aud=foo,buzz
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

                public class JavaClass {}
            """
            file("buildSrc/src/main/groovy/fizz/buzz/GroovyClass.groovy") << """
                package fizz.buzz;
                class GroovyClass {}
            """
    
            file("buildSrc/src/main/groovy/foo.gradle") << """
                import foo.bar.JavaClass
                import fizz.buzz.GroovyClass
                println JavaClass
                println GroovyClass
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  4. plugin/pkg/admission/runtimeclass/admission_test.go

    						"foo":  "bar",
    						"fizz": "buzz",
    					},
    				},
    			},
    			pod:         newSchedulingValidPod("pod-with-different-key-value-node-selector", map[string]string{"foo": "bar"}, nil),
    			expectError: false,
    			expectedPod: newSchedulingValidPod("pod-with-different-key-value-node-selector", map[string]string{"foo": "bar", "fizz": "buzz"}, nil),
    		},
    		{
    			name: "scheduling, multiple tolerations",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 17 01:30:14 UTC 2022
    - 17.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            newIsolatables[1].isolate() == EnumType.BAR
        }
    
        def "can serialize/deserialize isolated Map"() {
            Map<String, String> map = [
                    "foo": "bar",
                    "baz": "buzz"
            ]
    
            when:
            serialize(isolatableFactory.isolate(map))
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

                .registerInstance("fizz", "fizz")
                .mutate { it.path("fizz").descriptor("fizz mutator").type(String).action("buzz", ModelType.of(String), {}) }
                .registerInstance("buzz", "buzz")
                .mutate { it.path("buzz").descriptor("buzz mutator").type(String).action("foo", ModelType.of(String), {}) }
    
            when:
            registry.get("foo")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            gitCheckout.file('deeperDep/evenDeeperDep/foo').text == "baz"
    
            when:
            // Update submodule origin
            evenDeeperRepo.file('foo').text = "buzz"
            evenDeeperRepo.commit("update file", "foo")
            deeperRepo.file('foo').text = "baz"
            deeperRepo.commit("update file", "foo")
            // Update parent repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                    message.set(zipped)
                }
            """
    
            when:
            configurationCacheRun("ok", "-DmessagePrefix=fizz", "-DmessageSuffix=buzz")
    
            then:
            output.count("fizz buzz!") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun("ok", "-DmessagePrefix=foo", "-DmessageSuffix=bar")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            def attrsPlusFormat = concat(attrs, ["artifactType": type])
    
            given:
            registry.create().create("baz").attributes.attribute(Attribute.of("custom", String), "123")
            registry.create().create("buzz").attributes.attribute(Attribute.of("custom", String), "234")
    
            expect:
            registry.mapAttributesFor(artifactFile) == attrsPlusFormat
    
            where:
            artifactFile    | type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    							allow: true,
    						},
    						// Test matches for `/foo/{*}/bar/{**}`
    						{
    							path:  "/foo/buzz/bar/bat.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/buzz/bar/bat.temp.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/buzz/bar/bat/fuzz.txt",
    							allow: true,
    						},
    						{
    							path:  "/foo/bar/bat.txt",
    							allow: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top