Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 380 for Fred (0.29 sec)

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

            when:
            project.container {
                Fred
                Barney {}
            }
    
            then:
            container.size() == 2
            container.findByName("Fred") == realFred
            container.findByName("Barney") == realBarney
            container.asDynamicObject.getProperty("Fred") == realFred
            container.asDynamicObject.getProperty("Barney") == realBarney
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            when:
            container.register("fred", Person)
            container.create("bob", Person)
            def fred = container.named("fred")
            def bob = container.named("bob")
    
            then:
            fred.present
            fred.get().name == "fred"
            bob.present
            bob.get().name == "bob"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

            assertThat(matcher, matchesFile("fred.jsp"));
            assertThat(matcher, matchesFile("a", "fred.jsp"));
            assertThat(matcher, matchesFile("a", "b", "fred.jsp"));
            assertThat(matcher, not(matchesFile()));
            assertThat(matcher, not(matchesFile("fred.txt")));
            assertThat(matcher, not(matchesFile("src", "fred.txt")));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue33158.dir/a.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    var GS string
    
    func M() string {
    	if s := getname("Fred"); s != "" {
    		return s
    	}
    	if s := getname("Joe"); s != "" {
    		return s
    	}
    
    	return string("Alex")
    }
    
    // getname can be any function returning a string, just has to be non-inlinable.
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 17:24:59 UTC 2019
    - 478 bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils_test.go

    				Kind:       "Pod",
    				Name:       "fred",
    				UID:        "abc",
    			},
    			obj: metav1.ObjectMeta{
    				Name: "fred",
    				UID:  "abc",
    			},
    			schema:      podKind,
    			shouldMatch: true,
    		},
    		{
    			name: "match without UID",
    			ref: metav1.OwnerReference{
    				APIVersion: "v1",
    				Kind:       "Pod",
    				Name:       "fred",
    				UID:        "abc",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  6. src/math/all_test.go

    		j, z := TrigReduce(x)
    		xred := float64(j)*(Pi/4) + z
    
    		if f, fred := Sin(x), Sin(xred); !close(f, fred) {
    			t.Errorf("Sin(trigReduce(%g)) != Sin(%g), got %g, want %g", x, x, fred, f)
    		}
    		if f, fred := Cos(x), Cos(xred); !close(f, fred) {
    			t.Errorf("Cos(trigReduce(%g)) != Cos(%g), got %g, want %g", x, x, fred, f)
    		}
    		if f, fred := Tan(x), Tan(xred); !close(f, fred) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation_test.go

    				},
    				Rules: []flowcontrol.PolicyRulesWithSubjects{{
    					Subjects: []flowcontrol.Subject{{
    						Kind:  flowcontrol.SubjectKindServiceAccount,
    						User:  &flowcontrol.UserSubject{Name: "fred"},
    						Group: &flowcontrol.GroupSubject{Name: "fred"},
    					}},
    					NonResourceRules: []flowcontrol.NonResourcePolicyRule{{
    						Verbs:           []string{flowcontrol.VerbAll},
    						NonResourceURLs: []string{"*"},
    					}},
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  8. src/crypto/x509/name_constraints_test.go

    	// Examples from RFC 3696
    	{"Abc\\@******@****.***", "Abc@def", "example.com"},
    	{"Fred\\ ******@****.***", "Fred Bloggs", "example.com"},
    	{"Joe.\\\\******@****.***", "Joe.\\Blow", "example.com"},
    	{"\"Abc@def\"@example.com", "Abc@def", "example.com"},
    	{"\"Fred Bloggs\"@example.com", "Fred Bloggs", "example.com"},
    	{"customer/department=******@****.***", "customer/department=shipping", "example.com"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. docs/site-replication/gen-oidc-sts-cred.go

    package main
    
    // This programs mocks user interaction against Dex IDP and generates STS
    // credentials. It is for MinIO testing purposes only.
    //
    // Run like:
    //
    // $ MINIO_ENDPOINT=http://localhost:9000 go run gen-oidc-sts-cred.go
    
    import (
    	"context"
    	"fmt"
    	"log"
    	"net/http"
    	"os"
    
    	cr "github.com/minio/minio-go/v7/pkg/credentials"
    	cmd "github.com/minio/minio/cmd"
    )
    
    func main() {
    	ctx := context.Background()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 29 01:27:09 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. RELEASE.md

    Clayne Robison, Colle, Dan Ganea, David Norman, David Refaeli, dengziming, Diego
    Caballero, Divyanshu, djshen, Douman, Duncan Riach, EFanZh, Elena Zhelezina,
    Eric Schweitz, Evgenii Zheltonozhskii, Fei Hu, fo40225, Fred Reiss, Frederic
    Bastien, Fredrik Knutsson, fsx950223, fwcore, George Grzegorz Pawelczak, George
    Sterpu, Gian Marco Iodice, Giorgio Arena, giuros01, Gomathi Ramamurthy, Guozhong
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top