Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for galaxy (0.69 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/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    					{
    						MaxSkew:           2,
    						TopologyKey:       "galaxy",
    						WhenUnsatisfiable: v1.ScheduleAnyway,
    					},
    				},
    				DefaultingType: config.ListDefaulting,
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("planet", "mars").Label("galaxy", "andromeda").Obj(),
    			},
    			objs: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  8. operator/pkg/patch/patch_test.go

    spec:
      template:
        spec:
          containers:
          - name: deleteThis
            foo: bar
          - name: galley
            ports:
            - containerPort: 443
            - containerPort: 15014
            - containerPort: 9901
            command:
            - /usr/local/bin/galley
            - server
            - --meshConfigFile=/etc/mesh-config/mesh
            - --livenessProbeInterval=1s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  9. 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)
  10. operator/pkg/object/objects_test.go

    	"apiVersion": "v1",
    	"kind": "Pod",
    	"metadata": {
    		"name": "istio-galley-75bcd59768-hpt5t",
    		"namespace": "istio-system",
    		"labels": {
    			"istio": "galley"
    		}
    	},
    	"spec": {
    		"containers": [
    			{
    				"name": "galley",
    				"image": "docker.io/istio/galley:1.1.8",
    				"command": [
    					"/usr/local/bin/galley",
    					"server",
    					"--meshConfigFile=/etc/mesh-config/mesh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top