Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 226 for ifconfig (0.19 sec)

  1. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    	for _, cc := range targetClusters {
    		// if cc is an external cluster, config cluster's secret should have already been
    		// placed on the cluster, or the given cluster is the same as the cluster in
    		// the target list. Only when c is not config cluster, cc is not external cluster
    		// and the given cluster is not the same as the target, c's secret goes onto cc.
    		if (!c.IsConfig() || !cc.IsExternalControlPlane()) && c.Name() != cc.Name() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. cni/pkg/plugin/cnieventclient.go

    }
    
    func PushCNIEvent(cniClient CNIEventClient, event *skel.CmdArgs, prevResIps []*cniv1.IPConfig, podName, podNamespace string) error {
    	if event == nil {
    		return fmt.Errorf("unable to push CNI event, CmdArgs event was nil")
    	}
    
    	var ncconfigs []nodeagent.IPConfig
    	for _, ipc := range prevResIps {
    		ncconfigs = append(ncconfigs, nodeagent.IPConfig{Interface: ipc.Interface, Address: ipc.Address, Gateway: ipc.Gateway})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. cni/pkg/plugin/cnieventclient_test.go

    	ContainerID: "bbb-eee-www",
    }
    
    var (
    	fakeIP                 = net.ParseIP("99.9.9.9")
    	fakeGW                 = net.ParseIP("88.9.9.9")
    	fakeIDX                = 0
    	fakePrevResultIPConfig = cniv1.IPConfig{
    		Interface: &fakeIDX,
    		Address: net.IPNet{
    			IP: fakeIP,
    		},
    		Gateway: fakeGW,
    	}
    )
    
    func TestPushCNIAddEventSucceed(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_download_git_decorate_full.txt

    [short] skip
    [!git] skip
    
    # 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'
    
    env GOPROXY=direct
    
    exec git config --get log.decorate
    stdout 'full'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1011 bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/none_cds.json

    {
        "BlackHoleCluster": {
          "name": "BlackHoleCluster",
          "connect_timeout": 1000000000,
          "LbConfig": null
        },
        "PassthroughCluster": {
          "name": "PassthroughCluster",
          "type": 4,
          "connect_timeout": 1000000000,
          "lb_policy": 4,
          "LbConfig": null
        },
        "inbound|7070|tcplocal|s1tcp.none": {
          "name": "inbound|7070|tcplocal|s1tcp.none",
          "connect_timeout": 1000000000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  7. 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)
  8. pilot/pkg/xds/testdata/none_ecds.json

          "circuit_breakers": {
            "thresholds": [
              {
                "max_retries": {
                  "value": 1024
                }
              }
            ]
          },
          "LbConfig": null
        },
        "outbound|2001||s1http.none": {
          "name": "outbound|2001||s1http.none",
          "type": 3,
          "eds_cluster_config": {
            "eds_config": {
              "ConfigSourceSpecifier": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/options_test.go

    	endpointsliceconfig "k8s.io/kubernetes/pkg/controller/endpointslice/config"
    	endpointslicemirroringconfig "k8s.io/kubernetes/pkg/controller/endpointslicemirroring/config"
    	garbagecollectorconfig "k8s.io/kubernetes/pkg/controller/garbagecollector/config"
    	jobconfig "k8s.io/kubernetes/pkg/controller/job/config"
    	namespaceconfig "k8s.io/kubernetes/pkg/controller/namespace/config"
    	nodeipamconfig "k8s.io/kubernetes/pkg/controller/nodeipam/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top