Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 187 for Commands (0.14 sec)

  1. platforms/core-runtime/gradle-cli-main/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    app {
        mainClassName = "org.gradle.launcher.GradleMain"
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo.go

    	return filepath.Join(b.plugin.host.GetPodPluginDir(b.podUID, utilstrings.EscapeQualifiedName(gitRepoPluginName)), b.volName)
    }
    
    func (b *gitRepoVolumeMounter) execCommand(command string, args []string, dir string) ([]byte, error) {
    	cmd := b.exec.Command(command, args...)
    	cmd.SetDir(dir)
    	return cmd.CombinedOutput()
    }
    
    func validateVolume(src *v1.GitRepoVolumeSource) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top