Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for ifconfig (0.37 sec)

  1. src/net/interface_bsd_test.go

    	} else {
    		ti.name = fmt.Sprintf("vlan%d", vid)
    	}
    	xname, err := exec.LookPath("ifconfig")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "create"},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "destroy"},
    	})
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. hack/run-prometheus-on-etcd-scrapes.sh

    fi
    
    SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")
    
    CONFIG="/tmp/$(cd /tmp && mktemp config.XXXXXX)"
    UNPACKDIR="/tmp/$(cd /tmp && mktemp -d unpack.XXXXXX)"
    SERVER_PID=""
    
    cleanup_prom() {
        rm -f "$CONFIG"
        rm -rf "$UNPACKDIR"
        if [[ -n "$SERVER_PID" ]]; then
    	kill "$SERVER_PID"
        fi
    }
    
    trap cleanup_prom EXIT
    
    chmod +r "$CONFIG" "$UNPACKDIR"
    
    tar xzf "$scrapes_file" -C "$UNPACKDIR"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    grep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|jobs|join|kill|killall|less|link|ln|locate|logname|logout|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|make|man|mkdir|mkfifo|mkisofs|mknod|more|most|mount|mtools|mtr|mv|mmv|nano|netstat|nice|nl|nohup|notify-send|np...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. build/common.sh

    #
    # This will set the global var KUBE_RSYNC_ADDR to the effective port that the
    # rsync daemon can be reached out.
    function kube::build::start_rsyncd_container() {
      IPTOOL=ifconfig
      if kube::build::has_ip ; then
        IPTOOL="ip address"
      fi
      kube::build::stop_rsyncd_container
      V=3 kube::log::status "Starting rsyncd container"
      kube::build::run_build_command_ex \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/hns_test.go

    	t.Skip("Skipping failing test on Windows.")
    	hns := hns{hcn: newHcnImpl()}
    	Network := mustTestNetwork(t)
    
    	ipConfig := &hcn.IpConfig{
    		IpAddress: epIpAddress,
    	}
    	Endpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       epMacAddress,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. cmd/ilm-config.go

    package cmd
    
    import (
    	"sync"
    
    	"github.com/minio/minio/internal/config/ilm"
    )
    
    var globalILMConfig = ilmConfig{
    	cfg: ilm.Config{
    		ExpirationWorkers: 100,
    		TransitionWorkers: 100,
    	},
    }
    
    type ilmConfig struct {
    	mu  sync.RWMutex
    	cfg ilm.Config
    }
    
    func (c *ilmConfig) getExpirationWorkers() int {
    	c.mu.RLock()
    	defer c.mu.RUnlock()
    
    	return c.cfg.ExpirationWorkers
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 02:50:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controller/apis/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	cpconfig "k8s.io/cloud-provider/config"
    	serviceconfig "k8s.io/cloud-provider/controllers/service/config"
    	cmconfig "k8s.io/controller-manager/config"
    	csrsigningconfig "k8s.io/kubernetes/pkg/controller/certificates/signer/config"
    	cronjobconfig "k8s.io/kubernetes/pkg/controller/cronjob/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. istioctl/pkg/config/config.go

    }
    
    // Cmd represents the config subcommand command
    func Cmd() *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "config SUBCOMMAND",
    		Short: "Configure istioctl defaults",
    		Args:  cobra.NoArgs,
    		Example: `  # list configuration parameters
      istioctl experimental config list`,
    	}
    	configCmd.AddCommand(listCommand())
    	return configCmd
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. gorm.go

    		tx.clone = 2
    	}
    
    	if config.DryRun {
    		tx.Config.DryRun = true
    	}
    
    	if config.QueryFields {
    		tx.Config.QueryFields = true
    	}
    
    	if config.Logger != nil {
    		tx.Config.Logger = config.Logger
    	}
    
    	if config.NowFunc != nil {
    		tx.Config.NowFunc = config.NowFunc
    	}
    
    	if config.Initialized {
    		tx = tx.getInstance()
    	}
    
    	return tx
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    fConfig.setBoost(1.0f);
                    fConfig.setCreatedBy(username);
                    fConfig.setCreatedTime(now);
                    if (form.depth != null) {
                        fConfig.setDepth(form.depth);
                    }
                    fConfig.setExcludedDocPaths(getDefaultString("default.config.file.excludedDocPaths", StringUtil.EMPTY));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top