Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 164 for ifconfig (0.26 sec)

  1. tests/integration/helm/upgrade/util.go

    			nsConfig.Get(helmtest.CniReleaseName), overrideValuesFile, helmtest.Timeout)
    		if err != nil {
    			ctx.Fatalf("failed to upgrade istio %s chart", helmtest.CniReleaseName)
    		}
    	}
    
    	if isAmbient {
    		// Upgrade ztunnel chart
    		err = h.UpgradeChart(helmtest.ZtunnelReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.ZtunnelChartsDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    ! go mod download github.com/golang/nonexist@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tests/integration/helm/util.go

    }
    
    var DefaultNamespaceConfig = NewNamespaceConfig()
    
    func NewNamespaceConfig(config ...types.NamespacedName) NamespaceConfig {
    	result := make(nsConfig, len(config))
    	for _, c := range config {
    		result[c.Name] = c.Namespace
    	}
    	return result
    }
    
    type nsConfig map[string]string
    
    func (n nsConfig) Get(name string) string {
    	if ns, ok := n[name]; ok {
    		return ns
    	}
    	return IstioNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. tests/integration/ambient/waypoint_test.go

    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			nsConfig := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "waypoint",
    				Inject: false,
    				Labels: map[string]string{
    					constants.DataplaneModeLabel: "ambient",
    				},
    			})
    
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"apply",
    				"--namespace",
    				nsConfig.Name(),
    				"--wait",
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/get_issue53955.txt

    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    # Inject a local repo in place of a remote one, so that we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

            def uuid = UUID.randomUUID()
            server.expectGetMissing("/myConfig-${uuid}.txt")
            server.start()
            buildFile << """
                text.text = resources.text.fromUri("${server.uri}/myConfig-${uuid}.txt")
    """
    
            expect:
            fails("text")
            failure.assertHasCause("Could not read '${server.uri}/myConfig-${uuid}.txt' as it does not exist.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/cni-watcher.go

    	Netns        string
    	PodName      string
    	PodNamespace string
    	IPs          []IPConfig
    }
    
    // IPConfig contains an interface/gateway/address combo defined for a newly-started pod by CNI.
    // This is "from the horse's mouth" so to speak and will be populated before Kube is informed of the
    // pod IP.
    type IPConfig struct {
    	Interface *int
    	Address   net.IPNet
    	Gateway   net.IP
    }
    
    type CniPluginServer struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. tests/integration/helm/install_test.go

    			}
    			if t.Settings().CIMode {
    				for _, ns := range config.AllNamespaces() {
    					namespace.Dump(t, ns)
    				}
    			}
    		})
    
    		InstallIstio(t, cs, h, overrideValuesFile, "", true, isAmbient, config)
    
    		VerifyInstallation(t, cs, config, true, isAmbient, revision)
    		verifyValidation(t, revision)
    
    		check(t)
    		t.Cleanup(func() {
    			DeleteIstio(t, h, cs, config, isAmbient)
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_traffic_policy.go

    }
    
    // applyRoundRobinLoadBalancer will set the LbPolicy and create an LbConfig for ROUND_ROBIN if used in LoadBalancerSettings
    func applyRoundRobinLoadBalancer(c *cluster.Cluster, loadbalancer *networking.LoadBalancerSettings) {
    	c.LbPolicy = cluster.Cluster_ROUND_ROBIN
    
    	if loadbalancer.GetWarmupDurationSecs() != nil {
    		c.LbConfig = &cluster.Cluster_RoundRobinLbConfig_{
    			RoundRobinLbConfig: &cluster.Cluster_RoundRobinLbConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/hns.go

    	if err != nil {
    		return nil, err
    	}
    	var flags hcn.EndpointFlags
    	if !ep.isLocal {
    		flags |= hcn.EndpointFlagsRemoteEndpoint
    	}
    	ipConfig := &hcn.IpConfig{
    		IpAddress: ep.ip,
    	}
    	hnsEndpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       ep.macAddress,
    		Flags:            flags,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top