Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Gerrand (0.12 sec)

  1. src/testing/quick/quick.go

    	// If nil, the top-level Value function is used to generate them.
    	Values func([]reflect.Value, *rand.Rand)
    }
    
    var defaultConfig Config
    
    // getRand returns the *rand.Rand to use for a given Config.
    func (c *Config) getRand() *rand.Rand {
    	if c.Rand == nil {
    		return rand.New(rand.NewSource(time.Now().UnixNano()))
    	}
    	return c.Rand
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_gofile_in_goroot.txt

    stdout '^fmt$'
    
    ! go list .
    stderr '^GOROOT/src is not an importable package$'
    
    # In GOPATH mode, 'go list ./...' should synthesize a legacy GOPATH-mode path —
    # not a standard-library or empty path — for the errant package.
    env GO111MODULE=off
    go list ./...
    stdout -count=2 '^.+$' # Both 'fmt' and GOROOT/src should be listed.
    stdout '^fmt$'
    [!GOOS:windows] stdout ^_$WORK/goroot/src$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/background-tasks.md

    Es kann sich um eine `async def`- oder normale `def`-Funktion handeln. **FastAPI** weiß, wie damit zu verfahren ist.
    
    In diesem Fall schreibt die Taskfunktion in eine Datei (den Versand einer E-Mail simulierend).
    
    Und da der Schreibvorgang nicht `async` und `await` verwendet, definieren wir die Funktion mit normalem `def`:
    
    ```Python hl_lines="6-9"
    {!../../../docs_src/background_tasks/tutorial001.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 12 14:15:29 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_de.properties

    errors.cannot_delete_doc_because_of_running=Crawler läuft. Das Dokument kann nicht gelöscht werden.
    errors.failed_to_delete_doc_in_admin=Löschen des Dokuments fehlgeschlagen.
    errors.failed_to_send_testmail=Versand der Testmail fehlgeschlagen.
    errors.could_not_find_backup_index=Zu sichernder Index konnte nicht gefunden werden.
    errors.no_user_for_changing_password=Das aktuelle Passwort ist ungültig.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    All of the cashiers doing all the work with one client after the other 👨‍💼⏯.
    
    And you have to wait 🕙 in the line for a long time or you lose your turn.
    
    You probably wouldn't want to take your crush 😍 with you to run errands at the bank 🏦.
    
    ### Burger Conclusion
    
    In this scenario of "fast food burgers with your crush", as there is a lot of waiting 🕙, it makes a lot more sense to have a concurrent system ⏸🔀⏯.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. doc/go_mem.html

    in that most races have a limited number of outcomes,
    and less like C and C++, where the meaning of any program with a race
    is entirely undefined, and the compiler may do anything at all.
    Go's approach aims to make errant programs more reliable and easier to debug,
    while still insisting that races are errors and that tools can diagnose and report them.
    </p>
    
    <h2 id="model">Memory Model</h2>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    earth
    
    // eat : 2014-01-23 Charleston Road Registry Inc.
    eat
    
    // eco : 2016-07-08 Big Room Inc.
    eco
    
    // edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V.
    edeka
    
    // education : 2013-11-07 Binky Moon, LLC
    education
    
    // email : 2013-10-31 Binky Moon, LLC
    email
    
    // emerck : 2014-04-03 Merck KGaA
    emerck
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    vda.it ve ve.it vefsn.no vega.no vegarshei.no vegas vegårshei.no velvet.jp ven.it veneto.it venezia.it venice.it vennesla.no ventures verbania.it vercel.app vercel.dev vercelli.it verdal.no verisign vermà gensberater vermà gensberatung verona.it verran.no versailles.museum verse.jp versicherung versus.jp vestby.no vestnes.no vestre-slidre.no vestre-toten.no vestvagoy.no vestvågøy.no vet vet.br veterinaire.fr veterinaire.km vevelstad.no vf.no vfs.cloud9.af-south-1.amazonaws.com vfs.cloud9.ap-east-1.amazonaws.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top