Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 773 for tpool_ (0.28 sec)

  1. docs/changelogs/changelog_4x.md

     [okio_3_6_0]: https://square.github.io/okio/changelog/#version-360
     [public_suffix]: https://publicsuffix.org/
     [rfc_2045]: https://tools.ietf.org/html/rfc2045
     [rfc_7231_647]: https://tools.ietf.org/html/rfc7231#section-6.4.7
     [rfc_7692]: https://tools.ietf.org/html/rfc7692
     [semver]: https://semver.org/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. .space/CODEOWNERS

    /libraries/tools/kotlin-gradle-statistics/ "Kotlin Build Tools"
    /libraries/tools/kotlin-lombok/ "Kotlin Build Tools"
    /libraries/tools/kotlin-main-kts/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-main-kts-test/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-maven-allopen/ "Kotlin Build Tools"
    /libraries/tools/kotlin-maven-lombok/ "Kotlin Build Tools"
    /libraries/tools/kotlin-maven-noarg/ "Kotlin Build Tools"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  3. docs/de/docs/tutorial/security/first-steps.md

    Aber ersparen wir Ihnen die Zeit, die gesamte lange Spezifikation zu lesen, nur um die kleinen Informationen zu finden, die Sie benötigen.
    
    Lassen Sie uns die von **FastAPI** bereitgestellten Tools verwenden, um Sicherheit zu gewährleisten.
    
    ## Wie es aussieht
    
    Lassen Sie uns zunächst einfach den Code verwenden und sehen, wie er funktioniert, und dann kommen wir zurück, um zu verstehen, was passiert.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gc.go

    var ToolchainVersion = runtime.Version()
    
    // The Go toolchain.
    
    type gcToolchain struct{}
    
    func (gcToolchain) compiler() string {
    	return base.Tool("compile")
    }
    
    func (gcToolchain) linker() string {
    	return base.Tool("link")
    }
    
    func pkgPath(a *Action) string {
    	p := a.Package
    	ppath := p.ImportPath
    	if cfg.BuildBuildmode == "plugin" {
    		ppath = pluginPath(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	uploadOK := true
    	mode, asof := u.dir.Mode()
    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    		uploadOK = false
    	}
    	// If the mode is recorded with an asof date, don't upload if the report
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/concepts.md

    And there has to be something in charge of **renewing the HTTPS certificates**, it could be the same component or it could be something different.
    
    ### Example Tools for HTTPS
    
    Some of the tools you could use as a TLS Termination Proxy are:
    
    * Traefik
        * Automatically handles certificates renewals ✨
    * Caddy
        * Automatically handles certificates renewals ✨
    * Nginx
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

      do_external_licenses_check \
        "//tensorflow/tools/pip_package:wheel" \
        "//tensorflow/tools/pip_package:licenses"
    }
    
    @test "Libtensorflow generated license includes all dependencies' licenses" {
      do_external_licenses_check \
        "//tensorflow:libtensorflow.so" \
        "//tensorflow/tools/lib_package:clicenses_generate"
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    		m.matchcap = make([]int, re.matchcap)
    		for _, t := range m.pool {
    			t.cap = make([]int, re.matchcap)
    		}
    	}
    
    	// Allocate queues if needed.
    	// Or reallocate, for "large" match pool.
    	n := matchSize[re.mpool]
    	if n == 0 { // large pool
    		n = len(re.prog.Inst)
    	}
    	if len(m.q0.sparse) < n {
    		m.q0 = queue{make([]uint32, n), make([]entry, 0, n)}
    		m.q1 = queue{make([]uint32, n), make([]entry, 0, n)}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    	return tools.link(b, root, targetPath, importcfg, root.Deps, ldBuildmode, root.Package.ImportPath)
    }
    
    func (tools gccgoToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
    	return tools.link(b, root, targetPath, importcfg, allactions, "shared", targetPath)
    }
    
    func (tools gccgoToolchain) cc(b *Builder, a *Action, ofile, cfile string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

            architectureDescriptorBuilders.add(LEGACY_ARM_ON_X86);
    
            boolean isNativeAmd64 = systemInfo.getArchitecture() == SystemInfo.Architecture.amd64;
            if (isNativeAmd64) {
                // Prefer 64-bit tools when building on a 64-bit OS
                architectureDescriptorBuilders.add(LEGACY_AMD64_ON_AMD64);
                architectureDescriptorBuilders.add(LEGACY_X86_ON_AMD64);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top