Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for galaxy (0.11 sec)

  1. src/compress/gzip/example_test.go

    	zw.Name = "a-new-hope.txt"
    	zw.Comment = "an epic space opera by George Lucas"
    	zw.ModTime = time.Date(1977, time.May, 25, 0, 0, 0, 0, time.UTC)
    
    	_, err := zw.Write([]byte("A long time ago in a galaxy far, far away..."))
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	if err := zw.Close(); err != nil {
    		log.Fatal(err)
    	}
    
    	zr, err := gzip.NewReader(&buf)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/compress/flate/example_test.go

    		defer wg.Done()
    
    		zw, err := flate.NewWriter(wp, flate.BestSpeed)
    		if err != nil {
    			log.Fatal(err)
    		}
    
    		b := make([]byte, 256)
    		for _, m := range strings.Fields("A long time ago in a galaxy far, far away...") {
    			// We use a simple framing format where the first byte is the
    			// message length, followed the message itself.
    			b[0] = uint8(copy(b[1:], m))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/hg --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/hg.bat --
    exit 1
    -- repo/README --
    Far out in the uncharted backwaters of the unfashionable end of the western
    spiral arm of the Galaxy lies a small, unregarded yellow sun.
    -- repo/a/go.mod --
    module example.com/a
    
    go 1.18
    -- repo/a/a.go --
    package main
    
    func main() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/fossil --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/fossil.bat --
    exit 1
    -- repo/README --
    Far out in the uncharted backwaters of the unfashionable end of the western
    spiral arm of the Galaxy lies a small, unregarded yellow sun.
    -- repo/fslckout --
    -- repo/a/go.mod --
    module example.com/a
    
    go 1.18
    -- repo/a/a.go --
    package main
    
    func main() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    rm $GOBIN/a$GOEXE
    
    -- $WORK/fakebin/bzr --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/bzr.bat --
    exit 1
    -- repo/README --
    Far out in the uncharted backwaters of the unfashionable end of the western
    spiral arm of the Galaxy lies a small, unregarded yellow sun.
    -- repo/a/go.mod --
    module example.com/a
    
    go 1.18
    -- repo/a/a.go --
    package main
    
    func main() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/version_buildvcs_git.txt

    -- $WORK/fakebin/git --
    #!/bin/sh
    exit 1
    -- $WORK/fakebin/git.bat --
    exit 1
    -- repo/README --
    Far out in the uncharted backwaters of the unfashionable end of the western
    spiral arm of the Galaxy lies a small, unregarded yellow sun.
    -- repo/a/go.mod --
    module example.com/a
    
    go 1.18
    -- repo/a/a.go --
    package main
    
    func main() {}
    -- repo/a/library/f.go --
    package library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/test/datasets/Readme.md

    # How To Use Galley Test Data Set
    
    ## Some of this information is out-of-date.  It is preserved for reference, though the datasets may still be used
    
    The Galley Test Data is designed to tests Galley from an inputs/outputs
    perspective. It uses an embedded set of input and golden files from which
    tests are calculated and executed.
    
    The general directory/file structure is as follows:
    
    ```plain
    # Area specific test data set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. src/math/big/gcd_test.go

    	})
    	b.Run("WithXY", func(b *testing.B) {
    		runGCDExt(b, aSize, bSize, true)
    	})
    }
    
    func runGCDExt(b *testing.B, aSize, bSize uint, calcXY bool) {
    	b.StopTimer()
    	var r = rand.New(rand.NewSource(1234))
    	aa := randInt(r, aSize)
    	bb := randInt(r, bSize)
    	var x, y *Int
    	if calcXY {
    		x = new(Int)
    		y = new(Int)
    	}
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		new(Int).GCD(x, y, aa, bb)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/README.md

    ## Writing Analyzers
    
    ### 1. Create the code
    
    Analyzers need to implement the Analyzer interface ( in the `galley/pkg/config/analysis` package). They should be created under the analyzers subdirectory, and given their own appropriate subpackage.
    
    An annotated example:
    
    ```go
    package virtualservice
    
    // <imports here>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/legacy/util/kuberesource/resources.go

    	_ = resultBuilder.Add(collections.ValidatingWebhookConfiguration)
    	_ = resultBuilder.Add(collections.MutatingWebhookConfiguration)
    	return resultBuilder.Build()
    }
    
    // the following code minimally duplicates logic from galley/pkg/config/source/kube/rt/known.go
    // without propagating the many dependencies it comes with.
    
    var knownTypes = map[string]struct{}{
    	asTypesKey("", "Service"):   {},
    	asTypesKey("", "Namespace"): {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top