Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for galaxy (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/README.md

    For example, the following code creates and then interacts with a Galley and Pilot component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
            Run(func(ctx framework.TestContext) {
                // Create the components.
                g := galley.NewOrFail(ctx, ctx, galley.Config{})
                p := pilot.NewOrFail(ctx, ctx, pilot.Config {})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare_test.go

            image: docker.io/istio/citadel:1.2.2
    `
    
    	testPodYaml1 := `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
        ports:
        - containerPort: 443
          protocol: TCP
        - containerPort: 15014
          protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. CODEOWNERS

    /tests/integration/conformance/                                  @istio/wg-test-and-release-maintainers
    /tests/integration/framework/                                    @istio/wg-test-and-release-maintainers
    /tests/integration/galley/                                       @istio/wg-networking-maintainers
    /tests/integration/telemetry/                                    @istio/wg-policies-and-telemetry-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top