Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 270 for Commands (0.12 sec)

  1. cluster/gce/manifests/etcd.manifest

          {
            "name": "ETCDCTL_API",
            "value": "3"
          }
            ],
        "livenessProbe": {
          "exec": {
            "command": [
              "/bin/sh",
              "-c",
              "set -x; exec /usr/local/bin/etcdctl --endpoints=127.0.0.1:{{ port }} {{ etcdctl_certs }} --command-timeout=15s endpoint health"
            ]
          },
          "initialDelaySeconds": {{ liveness_probe_initial_delay }},
          "timeoutSeconds": 15,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/crypto/tls/common_string.go

    package tls
    
    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[PKCS1WithSHA256-1025]
    	_ = x[PKCS1WithSHA384-1281]
    	_ = x[PKCS1WithSHA512-1537]
    	_ = x[PSSWithSHA256-2052]
    	_ = x[PSSWithSHA384-2053]
    	_ = x[PSSWithSHA512-2054]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcTaskExecutionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    import spock.lang.Issue
    
    class BuildSrcTaskExecutionIntegrationTest extends AbstractIntegrationSpec {
        def "can execute a task from buildSrc from the command line"() {
            file("buildSrc/build.gradle") << """
                task something {
                    doLast { }
                }
            """
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/MultipleTaskOptionsIntegrationTest.groovy

    class MultipleTaskOptionsIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "can configure tasks from command line in multiple projects"() {
            given:
            createDirs("project2")
            settingsFile << "include 'project2'"
            buildFile << """
                allprojects {
                    task someTask(type: SomeTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/telemetry.txt

    stdout 'on'
    
    go env
    stdout 'GOTELEMETRY=''?on''?'
    stdout 'GOTELEMETRYDIR=''?'$userconfig'[\\/]go[\\/]telemetry''?'
    ! go env -w GOTELEMETRY=off
    stderr '^go: unknown go command variable GOTELEMETRY$'
    ! go env -w GOTELEMETRYDIR=foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/errors_test.go

    	dir, err := os.MkdirTemp("", filepath.Base(t.Name()))
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    
    	dst := filepath.Join(dir, strings.TrimSuffix(file, ".go"))
    	cmd := exec.Command("go", "build", "-gcflags=-L -e", "-o="+dst, path(file)) // TODO(gri) no need for -gcflags=-L if go tool is adjusted
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Errorf("expected cgo to fail but it succeeded")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/mktests.go

    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"internal/trace/raw"
    	"internal/trace/version"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    )
    
    func main() {
    	// Create command.
    	var trace, stderr bytes.Buffer
    	cmd := exec.Command("go", "run", "./testprog/main.go")
    	cmd.Stdout = &trace
    	cmd.Stderr = &stderr
    
    	// Run trace program; the trace will appear in stdout.
    	fmt.Fprintln(os.Stderr, "running trace program...")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/configuration/AllProperties.java

    import java.util.Map;
    
    /**
     * An immutable view of all properties available for build options, calculated from command-line options, the environment and the various
     * properties files.
     */
    public interface AllProperties {
        /**
         * Returns the system properties defined as command-line options.
         */
        Map<String, String> getRequestedSystemProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildLayoutValidator.java

                // All good
                return;
            }
    
            for (BuiltInCommand command : builtInCommands) {
                if (command.commandLineMatches(startParameter.getTaskNames())) {
                    // Allow missing settings and build scripts when running a built-in command
                    return;
                }
            }
    
            StringBuilder message = new StringBuilder("Directory '");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 07:26:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/telemetrycmd/telemetry.go

    // license that can be found in the LICENSE file.
    
    // Package telemetrycmd implements the "go telemetry" command.
    package telemetrycmd
    
    import (
    	"context"
    	"fmt"
    	"os"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var CmdTelemetry = &base.Command{
    	UsageLine: "go telemetry [off|local|on]",
    	Short:     "manage telemetry data and settings",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top