Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,215 for gold (0.1 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. 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)
  9. 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)
  10. src/make.bash

    	;;
    esac
    
    # Test for bad ld.
    if ld --version 2>&1 | grep 'gold.* 2\.20' >/dev/null; then
    	echo 'ERROR: Your system has gold 2.20 installed.'
    	echo 'This version is shipped by Ubuntu even though'
    	echo 'it is known not to work on Ubuntu.'
    	echo 'Binaries built with this linker are likely to fail in mysterious ways.'
    	echo
    	echo 'Run sudo apt-get remove binutils-gold.'
    	echo
    	exit 1
    fi
    
    # Test for bad SELinux.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top