Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for galaxy (0.41 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. README.md

        - **Pilot** - Responsible for configuring the proxies at runtime.
    
        - **Citadel** - Responsible for certificate issuance and rotation.
    
        - **Galley** - Responsible for validating, ingesting, aggregating, transforming and distributing config within Istio.
    
    - **Operator** - The component provides user friendly options to operate the Istio service mesh.
    
    ## Repositories
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

        injectedAnnotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top