Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,215 for gold (0.12 sec)

  1. src/cmd/link/internal/ld/lib.go

    			// -znocopyreloc if it thinks a COPY relocation is
    			// required. Switch to gold.
    			// https://sourceware.org/bugzilla/show_bug.cgi?id=19962
    			// https://go.dev/issue/22040
    			altLinker = "gold"
    
    			// If gold is not installed, gcc will silently switch
    			// back to ld.bfd. So we parse the version information
    			// and provide a useful error if gold is missing.
    			name, args := flagExtld[0], flagExtld[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/compress/flate/deflate_test.go

    	t.Parallel()
    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    	for _, test := range deflateInflateStringTests {
    		gold, err := os.ReadFile(test.filename)
    		if err != nil {
    			t.Error(err)
    		}
    		testToFromWithLimit(t, gold, test.label, test.limit)
    		if testing.Short() {
    			break
    		}
    	}
    }
    
    func TestReaderDict(t *testing.T) {
    	const (
    		dict = "hello world"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  3. src/runtime/runtime-gdb_test.go

    		"-ex", "set print thread-events off",
    	}
    	if cgo {
    		// When we build the cgo version of the program, the system's
    		// linker is used. Some external linkers, like GNU gold,
    		// compress the .debug_gdb_scripts into .zdebug_gdb_scripts.
    		// Until gold and gdb can work together, temporarily load the
    		// python script directly.
    		args = append(args,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. docs/en/docs/help-fastapi.md

    There you could buy me a coffee ☕️ to say thanks. 😄
    
    And you can also become a Silver or Gold sponsor for FastAPI. 🏅🎉
    
    ## Sponsor the tools that power FastAPI
    
    As you have seen in the documentation, FastAPI stands on the shoulders of giants, Starlette and Pydantic.
    
    You can also sponsor:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. docs/uk/docs/index.md

    <small>* оцінка на основі тестів внутрішньої команди розробників, створення продуктових застосунків.</small>
    
    ## Спонсори
    
    <!-- sponsors -->
    
    {% if 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 -%}
    {%- for sponsor in sponsors.silver -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. docs/de/docs/help-fastapi.md

    Dort könnten Sie mir als Dankeschön einen Kaffee spendieren ☕️. 😄
    
    Und Sie können auch Silber- oder Gold-Sponsor für FastAPI werden. 🏅🎉
    
    ## Die Tools sponsern, die FastAPI unterstützen
    
    Wie Sie in der Dokumentation gesehen haben, steht FastAPI auf den Schultern von Giganten, Starlette und Pydantic.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. docs/pl/docs/index.md

    ## Sponsorzy
    
    <!-- sponsors -->
    
    {% if 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 -%}
    {%- for sponsor in sponsors.silver -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. docs/ru/docs/index.md

    <small>* оценка на основе тестов внутренней команды разработчиков, создающих производственные приложения.</small>
    
    ## Спонсоры
    
    <!-- sponsors -->
    
    {% if 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 -%}
    {%- for sponsor in sponsors.silver -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/work/gccgo.go

    	ldflags = append(ldflags, envList("CGO_LDFLAGS", "")...)
    	if cfg.Goos != "aix" {
    		ldflags = str.StringList("-Wl,-(", ldflags, "-Wl,-)")
    	}
    
    	if root.buildID != "" {
    		// On systems that normally use gold or the GNU linker,
    		// use the --build-id option to write a GNU build ID note.
    		switch cfg.Goos {
    		case "android", "dragonfly", "linux", "netbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top