Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 790 for command1 (0.13 sec)

  1. README.md

    ```sh
    firewall-cmd --get-active-zones
    ```
    
    This command gets the active zone(s). Now, apply port rules to the relevant zones returned above. For example if the zone is `public`, use
    
    ```sh
    firewall-cmd --zone=public --add-port=9000/tcp --permanent
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #           «\${var#prefix}», «\${var%suffix}», and «\$( cmd )»;
    #         * compound commands having a testable exit status, especially «case»;
    #         * various built-in commands including «command», «set», and «ulimit».
    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/make.bash

    # GO_LDSO: Sets the default dynamic linker/loader (ld.so) to be used
    # by the internal linker.
    #
    # CC: Command line to run to compile C code for GOHOSTARCH.
    # Default is "gcc". Also supported: "clang".
    #
    # CC_FOR_TARGET: Command line to run to compile C code for GOARCH.
    # This is used by cgo. Default is CC.
    #
    # CC_FOR_${GOOS}_${GOARCH}: Command line to run to compile C code for specified ${GOOS} and ${GOARCH}.
    # (for example, CC_FOR_linux_arm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/plugin.go

    }
    
    func (plugin *flexVolumePlugin) SupportsMountOption() bool {
    	return false
    }
    
    // Mark the given commands as unsupported.
    func (plugin *flexVolumePlugin) unsupported(commands ...string) {
    	plugin.Lock()
    	defer plugin.Unlock()
    	plugin.unsupportedCommands = append(plugin.unsupportedCommands, commands...)
    }
    
    func (plugin *flexVolumePlugin) SupportsSELinuxContextMount(spec *volume.Spec) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    	// Apply holds a list of options that are specific to the "kubeadm upgrade apply" command.
    	Apply UpgradeApplyConfiguration
    
    	// Diff holds a list of options that are specific to the "kubeadm upgrade diff" command.
    	Diff UpgradeDiffConfiguration
    
    	// Node holds a list of options that are specific to the "kubeadm upgrade node" command.
    	Node UpgradeNodeConfiguration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	Apply UpgradeApplyConfiguration `json:"apply,omitempty"`
    
    	// Diff holds a list of options that are specific to the "kubeadm upgrade diff" command.
    	// +optional
    	Diff UpgradeDiffConfiguration `json:"diff,omitempty"`
    
    	// Node holds a list of options that are specific to the "kubeadm upgrade node" command.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/cmd/covdata/covdata.go

    		panic("fatal error")
    	}
    	Exit(1)
    }
    
    func usage(msg string) {
    	if len(msg) > 0 {
    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    	fmt.Fprintf(os.Stderr, "usage: go tool covdata [command]\n")
    	fmt.Fprintf(os.Stderr, `
    Commands are:
    
    textfmt     convert coverage data to textual format
    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    // The bootstrap command runs a build from scratch,
    // stopping at having installed the go_bootstrap command.
    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    // commands (like "go tool dist test" in run.bash) can rely on bug fixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    version. By default, tidy acts as if the -compat flag were set to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation.go

    		return ""
    	}
    }
    
    // IsWriteCmd returns true for all command types that do write actions (and thus need a lock)
    func (v IptablesVersion) IsWriteCmd(cmd constants.IptablesCmd) bool {
    	switch cmd {
    	case constants.IPTables:
    		return true
    	case constants.IPTablesRestore:
    		return true
    	default:
    		return false
    	}
    }
    
    // Constants for iptables commands
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top