Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for gold (0.16 sec)

  1. docs/zh-hant/docs/fastapi-people.md

    以下是**贊助者**。 😎
    
    他們主要透過 <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub Sponsors</a> 支持我在 **FastAPI**(以及其他項目)上的工作。
    
    {% if sponsors %}
    
    {% if sponsors.gold %}
    
    ### 金牌贊助商
    
    {% 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 %}
    
    {% if sponsors.silver %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. configure.py

        # Enable MMA Dynamic Dispatch support if 'gcc' and if linker >= 2.35
        gcc_env = get_gcc_compiler(environ_cp)
        if gcc_env is not None:
    
          # Use gold linker if 'gcc' and if 'ppc64le'
          write_to_bazelrc('build --linkopt="-fuse-ld=gold"')
    
          # Get the linker version
          ld_version = run_shell([gcc_env, '-Wl,-version']).split()
    
          ld_version_int = convert_version_to_int(ld_version[3])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 👥 Update FastAPI People. PR [#2739](https://github.com/tiangolo/fastapi/pull/2739) by [@github-actions[bot]](https://github.com/apps/github-actions).
    * 🔧 Add new Gold Sponsor Talk Python 🎉. PR [#2673](https://github.com/tiangolo/fastapi/pull/2673) by [@tiangolo](https://github.com/tiangolo).
    * 🔧 Add new Gold Sponsor vim.so 🎉. PR [#2669](https://github.com/tiangolo/fastapi/pull/2669) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    		}
    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    		// rodata and executable text.
    		//
    		// Note: gold or GNU ld will reduce the size of the executable
    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    // other than passing a trailing --build-id=none. So that is what we
    // do, but only on systems likely to support it, which is to say,
    // systems that normally use gold or the GNU linker.
    func (b *Builder) disableBuildID(ldflags []string) []string {
    	switch cfg.Goos {
    	case "android", "dragonfly", "linux", "netbsd":
    		ldflags = append(ldflags, "-Wl,--build-id=none")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //	CTL            = <any US-ASCII control character
    //	                 (octets 0 - 31) and DEL (127)>
    //
    // RFC 7230 says:
    //
    //	field-value    = *( field-content / obs-fold )
    //	obj-fold       =  N/A to http2, and deprecated
    //	field-content  = field-vchar [ 1*( SP / HTAB ) field-vchar ]
    //	field-vchar    = VCHAR / obs-text
    //	obs-text       = %x80-FF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclass_test.go

    	badAPIGroup := "example.com/v1"
    	goodAPIGroup := "example.com"
    
    	scenarios := map[string]struct {
    		class        *resource.ResourceClass
    		wantFailures field.ErrorList
    	}{
    		"good-class": {
    			class: testClass(goodName, goodName),
    		},
    		"good-long-driver-name": {
    			class: testClass(goodName, "acme.example.com"),
    		},
    		"missing-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/build.gradle.kts

        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

                Peano.fromInt(1024).toInt(),
                equalTo(1024)
            )
        }
    
        sealed class Peano {
    
            companion object {
    
                fun fromInt(n: Int): Peano = (0 until n).fold(Z as Peano) { acc, _ -> S(acc) }
            }
    
            fun toInt(): Int = sequence().count() - 1
    
            object Z : Peano() {
                override fun toString() = "Z"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				return claim
    			}(),
    		},
    		"good-parameters": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.Spec.ParametersRef = &resource.ResourceClaimParametersReference{
    					Kind: "foo",
    					Name: "bar",
    				}
    				return claim
    			}(),
    		},
    		"good-parameters-apigroup": {
    			claim: func() *resource.ResourceClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top