Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IsConfig (0.17 sec)

  1. pkg/test/framework/components/cluster/topology.go

    	if _, f := knownClusterNames[c.Name()]; f {
    		return c.Name()
    	}
    	if c.IsPrimary() {
    		if c.IsConfig() {
    			prefix = "primary"
    		} else {
    			prefix = "externalistiod"
    		}
    	} else if c.IsRemote() {
    		if c.IsConfig() {
    			prefix = "config"
    		} else {
    			prefix = "remote"
    		}
    	}
    
    	return fmt.Sprintf("%s-%d", prefix, c.Index)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/cluster/cluster.go

    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    	// IsConfig returns true if this is a config cluster, used as the source of
    	// Istio config for one or more control planes.
    	IsConfig() bool
    
    	// IsRemote returns true if this is a remote cluster, which uses a control plane
    	// residing in another cluster.
    	IsRemote() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/kube/cluster.go

    		return echo.Config{}, false
    	}
    	return config, true
    }
    
    func (c *Cluster) isVMSupported() bool {
    	// VMs can only be deployed on config clusters, since they assume the cluster ID of the control plane.
    	return c.IsConfig() && c.vmSupport
    }
    
    // OverrideTopology allows customizing the relationship between this and other clusters
    // for a single suite. This practice is discouraged, and separate test jobs should be created
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    	}, exclude(excluded...))
    }
    
    // Configs returns the subset that are config clusters.
    func (c Clusters) Configs(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return cc.IsConfig()
    	}, exclude(excluded...))
    }
    
    // Remotes returns the subset that are remote clusters.
    func (c Clusters) Remotes(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/tsconfig.json

    {
      /* Visit https://aka.ms/tsconfig.json to read more about this file */
      "compilerOptions": {
        "target": "ES2022",
        "module": "ES2022",
        "moduleResolution": "node",
    
        "strict": true,
        "allowUnusedLabels": false,
        "allowUnreachableCode": false,
        "exactOptionalPropertyTypes": true,
        "noFallthroughCasesInSwitch": true,
        "noImplicitOverride": true,
        "noImplicitReturns": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 683 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            def executableBinary = targetBinary("vsConfig")
            when:
            registry.addProjectConfiguration(executableBinary)
    
            then:
            def vsConfig = registry.getProjectConfiguration(executableBinary)
            vsConfig.type == "Makefile"
            vsConfig.project.name == "mainExe"
            vsConfig.configurationName == "vsConfig"
            vsConfig.platformName == "Win32"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. tests/integration/helm/install_test.go

    }
    
    func TestAmbientInstallMultiNamespace(t *testing.T) {
    	tests := []struct {
    		name     string
    		nsConfig NamespaceConfig
    	}{{
    		name: "isolated-istio-cni",
    		nsConfig: NewNamespaceConfig(types.NamespacedName{
    			Name: CniReleaseName, Namespace: "istio-cni",
    		}),
    	}, {
    		name: "isolated-istio-cni-and-ztunnel",
    		nsConfig: NewNamespaceConfig(types.NamespacedName{
    			Name: CniReleaseName, Namespace: "istio-cni",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/.dockerignore

    .git
    .localstorage
    node_modules
    devtools
    .eslint*
    .gitignore
    .prettier*
    .stylelint*
    CONTRIBUTING.md
    LICENSE
    npm
    npx
    package-lock.json
    package.json
    PATENTS
    README.md
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 178 bytes
    - Viewed (0)
  9. pkg/test/framework/components/namespace/namespace.go

    	return newKube(ctx, cfg)
    }
    
    // NewOrFail calls New and fails test if it returns error
    func NewOrFail(t test.Failer, ctx resource.Context, nsConfig Config) Instance {
    	t.Helper()
    	i, err := New(ctx, nsConfig)
    	if err != nil {
    		t.Fatalf("namespace.NewOrFail: %v", err)
    	}
    	return i
    }
    
    // GetAll returns all namespaces that have exist in the context.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top