Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for explainTo (2.37 sec)

  1. docs/en/docs/deployment/docker.md

    In those cases, you would probably want to build a **Docker image from scratch** as [explained above](#dockerfile), installing your dependencies, and running **a single Uvicorn process** instead of running something like Gunicorn with Uvicorn workers.
    
    ### Load Balancer
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    // For example, running on 50 MB of Go source code, induceSubL_8_32
    // (which runs only once, at the top level of the recursion)
    // takes 0.44s, while on 50 MB of random input, it takes 2.55s.
    // Nearly all the relative slowdown is explained by the text access:
    //
    //		c0, c1 := text[k-1], text[k]
    //
    // That line runs for 0.23s on the Go text and 2.02s on random text.
    
    //go:generate go run gen.go
    
    package suffixarray
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    						a1.Deps[0].Package.ImportPath,
    						a2.Package.ImportPath,
    						pkgDir,
    						dir)
    				}
    			}
    			// TODO(rsc): Find out and explain here why gccgo is different.
    			if cfg.BuildToolchainName == "gccgo" {
    				pkgDir = filepath.Join(pkgDir, "shlibs")
    			}
    			target := filepath.Join(pkgDir, shlib)
    
    			a := &Action{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    
    Recursive Division
    
    For very large inputs, it is possible to improve on the O(n²) algorithm.
    Let's call a group of n/2 real digits a (very) “wide digit”. We can run the
    standard long division algorithm explained above over the wide digits instead of
    the actual digits. This will result in many fewer steps, but the math involved in
    each step is more work.
    
    Where basic long division uses a 2-by-1-digit division to guess the initial q̂,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. src/internal/fuzz/worker.go

    // mutations on each invocation of the workerServer.fuzz method (this appears to
    // be what libFuzzer does, although there seems to be no documentation which
    // explains why this choice was made.)
    const chainedMutations = 5
    
    // fuzz runs the test function on random variations of the input value in shared
    // memory for a limited duration or number of iterations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/os/os_windows_test.go

    		` "CallMe\\\"Ishmael"`,
    		` a\\\b`,
    		` "a\\\b"`,
    		// from 5.5  Some Common Tasks
    		` "\"Call Me Ishmael\""`,
    		` "C:\TEST A\\"`,
    		` "\"C:\TEST A\\\""`,
    		// from 5.6  The Microsoft Examples Explained
    		` "a b c"  d  e`,
    		` "ab\"c"  "\\"  d`,
    		` a\\\b d"e f"g h`,
    		` a\\\"b c d`,
    		` a\\\\"b c" d e`,
    		// from 5.7  Double Double Quote Examples (pre 2008)
    		` "a b c""`,
    		` """CallMeIshmael"""  b  c`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    	// close to the L1 cache line width on many systems. Also, a value of 3 fits 4 tree
    	// levels perfectly into the 21-bit pallocBits summary field at the root level.
    	//
    	// The following equation explains how each of the constants relate:
    	// summaryL0Bits + (summaryLevels-1)*summaryLevelBits + logPallocChunkBytes = heapAddrBits
    	//
    	// summaryLevels is an architecture-dependent value defined in mpagealloc_*.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * `jar` is attached to `assemble`
     * `test` is attached to `check`
    
    The rest of the chapter explains the different avenues for customizing the build to your requirements. You will also see later how to adjust the build for libraries, applications, web apps and enterprise apps.
    
    [[sec:java_source_sets]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	goid uint64    // goroutine id of this goroutine; original goroutine possibly dead
    	gopc uintptr   // pc of go statement that created this goroutine
    }
    
    // A waitReason explains why a goroutine has been stopped.
    // See gopark. Do not re-use waitReasons, add new ones.
    type waitReason uint8
    
    const (
    	waitReasonZero                  waitReason = iota // ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    	-srcdir directory
    */
    package main
    
    /*
    Implementation details.
    
    Cgo provides a way for Go programs to call C code linked into the same
    address space. This comment explains the operation of cgo.
    
    Cgo reads a set of Go source files and looks for statements saying
    import "C". If the import has a doc comment, that comment is
    taken as literal C code to be used as a preamble to any C code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top