Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for Commands (0.7 sec)

  1. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

              effect: "NoExecute"
          nodeSelector:
            kubernetes.io/os: linux
          containers:
            - image: registry.k8s.io/kas-network-proxy/proxy-agent:v0.30.3
              name: konnectivity-agent
              command: ["/proxy-agent"]
              args: [
                      "--logtostderr=true",
                      "--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
    __EXTRA_PARAMS__
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

            then:
            isDaemon action
        }
    
        def "daemon is used when command line option is used"() {
            when:
            def action = convert('--daemon', 'args')
    
            then:
            isDaemon action
        }
    
        def "does not use daemon when no-daemon command line option issued"() {
            given:
            useCurrentProcess = true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. .github/workflows/mint/minio-resiliency.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:${JOB_NAME}
      command: server --console-address ":9001" http://minio{1...4}/rdata{1...2}
      expose:
        - "9000"
        - "9001"
      environment:
        MINIO_CI_CD: "on"
        MINIO_ROOT_USER: "minio"
        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Build.java

    import org.gradle.configuration.GradleLauncherMetaData;
    import org.gradle.internal.invocation.BuildAction;
    import org.gradle.launcher.exec.BuildActionParameters;
    
    import java.util.UUID;
    
    public class Build extends Command {
        private final BuildAction action;
        private final GradleLauncherMetaData buildClientMetaData;
        private final long startTime;
        private final boolean interactive;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. cluster/gce/manifests/kube-proxy.manifest

        image: {{pillar['kube_docker_registry']}}/kube-proxy-{{pillar['host_arch']}}:{{pillar['kube-proxy_docker_tag']}}
        resources:
          requests:
            cpu: {{ cpurequest }}
            memory: {{ memoryrequest }}
        command:
        - /bin/sh
        - -c
        - exec kube-proxy {{api_servers_with_port}} {{kubeconfig}} {{cluster_cidr}} --oom-score-adj=-998 {{params}} 1>>/var/log/kube-proxy.log 2>&1
        {{container_env}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

                    mainClass = 'None'
                }
            """
    
            when:
            withInstallations(jdk).run(":run", "--info")
    
            then:
            executedAndNotSkipped(":run")
            outputContains("Command: ${jdk.javaHome.absolutePath}")
    
            where:
            type           | jdk                                 | plugin
            'differentJdk' | AvailableJavaHomes.differentVersion | 'java-base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

        }
    
        static SystemPropertyInjection commandLine(String prop, String value) {
            return new SystemPropertyInjection() {
                @Override
                String getDescription() {
                    return "using command-line"
                }
    
                @Override
                List<String> getGradleArgs() {
                    return ["-D${prop}=${value}"]
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. samples/helloworld/src/Dockerfile

    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    # image will bind on TCP6 by default. In k8s pod spec (in a deployment pod template most likely) override for explicit IPv4 if needed with the command shown below:
    # ["gunicorn", "-b", "[0.0.0.0]:5000", "app:app", "-k", "gevent"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/runtime/debug/stack_test.go

    		t.Logf("found GOROOT %q from environment; checking embedded GOROOT value", envGoroot)
    		testenv.MustHaveExec(t)
    		exe, err := os.Executable()
    		if err != nil {
    			t.Fatal(err)
    		}
    		cmd := exec.Command(exe)
    		cmd.Env = append(os.Environ(), "GOROOT=", "GO_RUNTIME_DEBUG_TEST_ENTRYPOINT=dumpgoroot")
    		out, err := cmd.Output()
    		if err != nil {
    			t.Fatal(err)
    		}
    		fileGoroot = string(bytes.TrimSpace(out))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
        def 'arguments passed via command line take precedence and is not incremental by default'() {
            when:
            run("run", "--args", "2 '3' \"4\"")
    
            then:
            executedAndNotSkipped ":run"
            assertOutputFileIs('''\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top