Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,551 for gold (0.16 sec)

  1. src/cmd/go/note_test.go

    		// Test while forcing use of the gold linker, since in the past
    		// we've had trouble reading the notes generated by gold.
    		err := tg.doRun([]string{"build", "-ldflags", "-buildid=" + buildID + " -linkmode=external -extldflags=-fuse-ld=gold", "-o", tg.path("hello3.exe"), tg.path("hello.go")})
    		if err != nil {
    			if tg.grepCountBoth("(invalid linker|gold|cannot find [‘']ld[’'])") > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/crypto/sha1/fallback_test.go

    	defer func() { useAsm = true }()
    	c := New()
    	in := "ΑΒΓΔΕϜΖΗΘΙΚΛΜΝΞΟΠϺϘΡΣΤΥΦΧΨΩ"
    	gold := "0f58c2bb130f8182375f325c18342215255387e5"
    	if _, err := io.WriteString(c, in); err != nil {
    		t.Fatalf("could not write to c: %v", err)
    	}
    	out := fmt.Sprintf("%x", c.Sum(nil))
    	if out != gold {
    		t.Fatalf("mismatch: got %s, wanted %s", out, gold)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 853 bytes
    - Viewed (0)
  3. src/crypto/sha512/fallback_test.go

    	in := "ΑΒΓΔΕϜΖΗΘΙΚΛΜΝΞΟΠϺϘΡΣΤΥΦΧΨΩ"
    	gold := "6922e319366d677f34c504af31bfcb29" +
    		"e531c125ecd08679362bffbd6b6ebfb9" +
    		"0dcc27dfc1f3d3b16a16c0763cf43b91" +
    		"40bbf9bbb7233724e9a0c6655b185d76"
    	if _, err := io.WriteString(c, in); err != nil {
    		t.Fatalf("could not write to c: %v", err)
    	}
    	out := fmt.Sprintf("%x", c.Sum(nil))
    	if out != gold {
    		t.Fatalf("mismatch: got %s, wanted %s", out, gold)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 964 bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    				"requests.storage",
    				"persistentvolumeclaims",
    				"gold.storageclass.storage.k8s.io/requests.storage",
    				"gold.storageclass.storage.k8s.io/persistentvolumeclaims",
    			},
    
    			want: []corev1.ResourceName{
    				"count/persistentvolumeclaims",
    				"requests.storage",
    				"persistentvolumeclaims",
    				"gold.storageclass.storage.k8s.io/requests.storage",
    				"gold.storageclass.storage.k8s.io/persistentvolumeclaims",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/crypto/sha256/fallback_test.go

    	c := New()
    	in := "ΑΒΓΔΕϜΖΗΘΙΚΛΜΝΞΟΠϺϘΡΣΤΥΦΧΨΩ"
    	gold := "e93d84ec2b22383123be9f713697fb25" +
    		"338c86e2f7d8d1ddc2d89d332dd9d76c"
    	if _, err := io.WriteString(c, in); err != nil {
    		t.Fatalf("could not write to c: %v", err)
    	}
    	out := fmt.Sprintf("%x", c.Sum(nil))
    	if out != gold {
    		t.Fatalf("mismatch: got %s, wanted %s", out, gold)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 894 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/LatestVersionSelectorTest.groovy

            def metadata = Stub(ComponentMetadata) {
                getStatus() >> "silver"
                getStatusScheme() >> ["bronze", "silver", "gold"]
            }
    
            expect:
            accept("latest.bronze", metadata)
            accept("latest.silver", metadata)
            !accept("latest.gold", metadata)
        }
    
        def "rejects a candidate version if selector's status is not contained in candidate's status scheme"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyComponentMetadataRulesStatusIntegrationTest.groovy

            assert context.details.status == "silver"
            context.details.statusScheme = ["gold", "bronze"]
        }
    }
    dependencies {
        components {
            all(StatusRule)
        }
    }
    """
    
            expect:
            fails 'resolve'
            failure.assertHasCause(/Unexpected status 'silver' specified for org.test:projectA:1.0. Expected one of: [gold, bronze]/)
        }
    
        def "rule can change status"() {
            buildFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/hash/fnv/fnv_test.go

    func TestGolden128(t *testing.T) {
    	testGolden(t, New128(), golden128)
    }
    
    func TestGolden128a(t *testing.T) {
    	testGolden(t, New128a(), golden128a)
    }
    
    func testGolden(t *testing.T, hash hash.Hash, gold []golden) {
    	for _, g := range gold {
    		hash.Reset()
    		done, error := hash.Write([]byte(g.in))
    		if error != nil {
    			t.Fatalf("write error: %s", error)
    		}
    		if done != len(g.in) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 7.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            ivyRepo.module('org.test', 'projectA', '1.2').withStatus('gold').publish()
            ivyRepo.module('org.test', 'projectA', '1.0').withStatus('platin').publish()
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-${version}.jar")
    
            where:
            status   | version
            "bronze" | "1.3"
            "silver" | "1.3"
            "gold"   | "1.2"
            "platin" | "1.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. docs/fr/docs/fastapi-people.md

    {% if sponsors %}
    
    {% if sponsors.gold %}
    
    ### Gold Sponsors
    
    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top