Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Commands (0.15 sec)

  1. pkg/log/options.go

    	return s, level, nil
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    		cmd.PersistentFlags().StringArrayVar,
    		cmd.PersistentFlags().StringVar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

    import static java.util.Collections.emptyList;
    
    /**
     * <p>{@code StartParameter} defines the configuration used by a Gradle instance to execute a build. The properties of {@code StartParameter} generally correspond to the command-line options of
     * Gradle.
     *
     * <p>You can obtain an instance of a {@code StartParameter} by either creating a new one, or duplicating an existing one using {@link #newInstance} or {@link #newBuild}.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/crypto/tls/bogo_shim_test.go

    		t.Fatal(err)
    	}
    
    	var bogoDir string
    	if *bogoLocalDir != "" {
    		bogoDir = *bogoLocalDir
    	} else {
    		const boringsslModVer = "v0.0.0-20240523173554-273a920f84e8"
    		output, err := exec.Command("go", "mod", "download", "-json", "boringssl.googlesource.com/boringssl.git@"+boringsslModVer).CombinedOutput()
    		if err != nil {
    			t.Fatalf("failed to download boringssl: %s", err)
    		}
    		var j struct {
    			Dir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

    #   NODE_NAMES
    #   PROJECT
    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
    }
    
    # Read os distro information from /os/release on node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. src/os/signal/doc.go

    descriptor number does not matter. The SIGPIPE signal will be
    delivered to the Notify channel, and the write will fail with an EPIPE
    error.
    
    This means that, by default, command line programs will behave like
    typical Unix command line programs, while other programs will not
    crash with SIGPIPE when writing to a closed network connection.
    
    # Go programs that use cgo or SWIG
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

    /**
     * The entry point for a daemon process.
     *
     * If the daemon hits the specified idle timeout the process will exit with 0. If the daemon encounters an internal error or is explicitly stopped (which can be via receiving a stop command, or
     * unexpected client disconnection) the process will exit with 1.
     */
    public class DaemonMain extends EntryPoint {
        private static final Logger LOGGER = Logging.getLogger(DaemonMain.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            // In particular, it happens when the entry node is a task of the included plugin build that runs as part of building the plugin.
            // Such tasks do not rerun when configuration cache is re-used, even if specified on the command line.
            // Not restoring them as entry points doesn't affect the resulting execution plan.
            val scheduledEntryNodeIds = mutableListOf<Int>()
            nodes.forEach { node ->
                write(node)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

            kiali.io/dashboards: go,kiali
        spec:
          serviceAccountName: kiali
          containers:
          - image: "quay.io/kiali/kiali:v1.85"
            imagePullPolicy: IfNotPresent
            name: kiali
            command:
            - "/opt/kiali/kiali"
            - "-config"
            - "/kiali-configuration/config.yaml"
            securityContext:
              allowPrivilegeEscalation: false
              privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    }
    
    // CommandRunner interface allows to run command in a container.
    type CommandRunner interface {
    	// RunInContainer synchronously executes the command in the container, and returns the output.
    	// If the command completes with a non-0 exit code, a k8s.io/utils/exec.ExitError will be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. cmd/apierrorcode_string.go

    package cmd
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[ErrNone-0]
    	_ = x[ErrAccessDenied-1]
    	_ = x[ErrBadDigest-2]
    	_ = x[ErrEntityTooSmall-3]
    	_ = x[ErrEntityTooLarge-4]
    	_ = x[ErrPolicyTooLarge-5]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top