Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/config/analysis/analyzers/schema/validation.go

    }
    
    // AllValidationAnalyzers returns a slice with a validation analyzer for each Istio schema
    // This automation comes with an assumption: that the collection names used by the schema match the metadata used by Galley components
    func AllValidationAnalyzers() []analysis.Analyzer {
    	result := make([]analysis.Analyzer, 0)
    	collections.Istio.ForEach(func(s sresource.Schema) (done bool) {
    		result = append(result, &ValidationAnalyzer{s: s})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 07:38:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Malayalam            Tag = Tag{language: mlIndex, locale: mlIndex}
    	Mongolian            Tag = Tag{language: mnIndex, locale: mnIndex}
    	Marathi              Tag = Tag{language: mrIndex, locale: mrIndex}
    	Malay                Tag = Tag{language: msIndex, locale: msIndex}
    	Burmese              Tag = Tag{language: myIndex, locale: myIndex}
    	Nepali               Tag = Tag{language: neIndex, locale: neIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. istioctl/pkg/validate/validate.go

    func handleNamespace(istioNamespace string) string {
    	if istioNamespace == "" {
    		istioNamespace = constants.IstioSystemNamespace
    	}
    	return istioNamespace
    }
    
    // TODO(nmittler): Remove this once Pilot migrates to galley schema.
    func convertObjectFromUnstructured(schema resource.Schema, un *unstructured.Unstructured, domain string) (*config.Config, error) {
    	data, err := fromSchemaAndJSONMap(schema, un.Object["spec"])
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top