Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for seedling (0.14 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"seat":                                 "\U0001f4ba",
    	"secret":                               "\u3299\ufe0f",
    	"see_no_evil":                          "\U0001f648",
    	"seedling":                             "\U0001f331",
    	"selfie":                               "\U0001f933",
    	"senegal":                              "\U0001f1f8\U0001f1f3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. hack/verify-spelling.sh

    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    export KUBE_ROOT
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. .mailmap

    Sebastian Schuberth <******@****.***> <******@****.***>
    Stefan Oehme <******@****.***> <******@****.***>
    Sterling Greene <sterling@gradle.com> <******@****.***>
    Sterling Greene <sterling@gradle.com> <sterling******@****.***>
    Szczepan Faber <******@****.***>
    Szczepan Faber <******@****.***> <******@****.***>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 06:34:28 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  4. src/math/rand/rng.go

     * algorithm by
     * DP Mitchell and JA Reeds
     */
    
    const (
    	rngLen   = 607
    	rngTap   = 273
    	rngMax   = 1 << 63
    	rngMask  = rngMax - 1
    	int32max = (1 << 31) - 1
    )
    
    var (
    	// rngCooked used for seeding. See gen_cooked.go for details.
    	rngCooked [rngLen]int64 = [...]int64{
    		-4181792142133755926, -4576982950128230565, 1395769623340756751, 5333664234075297259,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-syscall-steal-proc-simple-bare-m.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 855 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 999 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 00:36:28 UTC 2024
    - 266 bytes
    - Viewed (0)
  9. src/math/rand/auto_test.go

    import (
    	. "math/rand"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    	// Pull out 10 int64s from the global source
    	// and then check that they don't appear in that
    	// order in the deterministic Seed(1) result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/errsupport.go

    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    		inaccessible // found object with matching name but inaccessible from the current package
    	)
    
    	// determine case
    	e := missing
    	var alt string // alternative spelling of selector; if any
    	if obj != nil {
    		alt = obj.Name()
    		if obj.Pkg() == check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top