Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,782 for better (0.11 sec)

  1. docs/en/docs/benchmarks.md

    Specifically, to see Uvicorn, Starlette and FastAPI compared together (among many other tools).
    
    The simpler the problem solved by the tool, the better performance it will get. And most of the benchmarks don't test the additional features provided by the tool.
    
    The hierarchy is like:
    
    * **Uvicorn**: an ASGI server
        * **Starlette**: (uses Uvicorn) a web microframework
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/os/path_unix.go

    func IsPathSeparator(c uint8) bool {
    	return PathSeparator == c
    }
    
    // splitPath returns the base name and parent directory.
    func splitPath(path string) (string, string) {
    	// if no better parent is found, the path is relative from "here"
    	dirname := "."
    
    	// Remove all but one leading slash.
    	for len(path) > 1 && path[0] == '/' && path[1] == '/' {
    		path = path[1:]
    	}
    
    	i := len(path) - 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_sum.txt

    # go mod tidy should clear dead entries from go.sum
    go mod tidy
    grep 'rsc.io/quote v1.0.0' go.sum
    ! grep 'rsc.io/quote v1.5.2' go.sum
    ! grep rsc.io/sampler go.sum
    
    # go.sum with no entries is OK to keep
    # (better for version control not to delete and recreate.)
    cp x.go.noimports x.go
    go mod tidy
    exists go.sum
    ! grep . go.sum
    
    -- go.mod --
    module x
    -- x.go --
    package x
    import _ "rsc.io/quote"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 742 bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/CaseSensitivity.java

    /**
     * The case sensitivity of a file system.
     *
     * Note that the method for actually comparing paths with a case sensitivity are in {@link PathUtil} instead of being on this enum,
     * since it seems that the methods can be better inlined by the JIT compiler if they are static.
     */
    public enum CaseSensitivity {
        CASE_SENSITIVE,
        CASE_INSENSITIVE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1011 bytes
    - Viewed (0)
  5. releasenotes/notes/agent-dns-capture.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - 26826
    releaseNotes:
    - |
      **Added** Experimental DNS resolution in the Istio agent to better support use cases like service entries
      with TCP services without VIPs, multicluster DNS resolution, and DNS resolution of Kubernetes services
      from VM sidecars. This feature is disabled by default and can be enabled by setting the following in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 08 04:32:46 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/EnumHashBiMap.java

      @CheckForNull
      public V put(K key, @ParametricNullness V value) {
        return super.put(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      @SuppressWarnings("RedundantOverride") // b/192446478: RedundantOverride ignores some annotations.
      // TODO(b/192446998): Remove this override after tools understand nullness better.
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/math/big/calibrate_test.go

    			count = 10 // this many extra measurements after we got both thresholds
    		}
    
    		th++
    	}
    }
    
    func measureSqr(words, nruns int, mode string) time.Duration {
    	// more runs for better statistics
    	initBasicSqr, initKaratsubaSqr := basicSqrThreshold, karatsubaSqrThreshold
    
    	switch mode {
    	case sqrModeMul:
    		basicSqrThreshold = words + 1
    	case sqrModeBasic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISession.kt

        public val createPackagePartProvider: (GlobalSearchScope) -> PackagePartProvider,
        modulesWithFilesProvider: () -> Map<KtSourceModule, List<PsiFile>>
    ) {
        // TODO: better to limit exposure? Current usages are: addExtension, jarFileSystem
        public val coreApplicationEnvironment: CoreApplicationEnvironment = kotlinCoreProjectEnvironment.environment
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top