Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for buzz (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 27), NewExpressions},
    				// always enabled for StoredExpressions
    			},
    			invalidExpressions: []string{"fizz == 'buzz'"},
    			activation:         map[string]any{"fizz": "buzz"},
    			opts: []VersionedOptions{
    				{IntroducedVersion: version.MajorMinor(1, 28), EnvOptions: []cel.EnvOption{cel.Variable("fizz", cel.StringType)}},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                        "implementation = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}",
                        "runtimeOnly = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}",
                        "compileOnly = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}"
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    						Labels:      map[k8s.AnnotationKey]k8s.AnnotationValue{"foo": "bar", "gateway.networking.k8s.io/ignore": "true"},
    						Annotations: map[k8s.AnnotationKey]k8s.AnnotationValue{"fizz": "buzz", "gateway.networking.k8s.io/ignore": "true"},
    					},
    				},
    			},
    			objects: defaultObjects,
    		},
    		{
    			name: "kube-gateway-ambient-redirect",
    			gw: k8sbeta.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top