Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,043 for bin2 (0.04 sec)

  1. helm/minio/templates/post-job.yaml

              imagePullPolicy: {{ .Values.mcImage.pullPolicy }}
              {{- if .Values.makePolicyJob.exitCommand }}
              command: [ "/bin/sh", "-c" ]
              args: [ "/bin/sh /config/add-policy; EV=$?; {{ .Values.makePolicyJob.exitCommand }} && exit $EV" ]
              {{- else }}
              command: [ "/bin/sh", "/config/add-policy" ]
              {{- end }}
              env:
                - name: MINIO_ENDPOINT
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

            '/opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/java' | '/opt/files/jdk-linux/jdk-8u161-linux-x64.tar.gz/bin/jstack'
            '/opt/jdk/oracle-jdk-8/bin/java'                           | '/opt/jdk/oracle-jdk-8/bin/jstack'
            '/opt/jdk/oracle-jdk-8/jre/bin/java'                       | '/opt/jdk/oracle-jdk-8/bin/jstack'
        }
    
        @Requires(UnitTestPreconditions.Windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/build-boring.sh

    # because the FIPS module itself is already built with -fPIC.
    echo '#!/bin/bash
    exec clang-'$ClangV' -DGOBORING -fPIC "$@"
    ' >/usr/local/bin/clang
    echo '#!/bin/bash
    exec clang++-'$ClangV' -DGOBORING -fPIC "$@"
    ' >/usr/local/bin/clang++
    chmod +x /usr/local/bin/clang /usr/local/bin/clang++
    
    # The BoringSSL tests use Go, and cgo would look for gcc.
    export CGO_ENABLED=0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/structuring-software-projects/server-application/app/src/main/java/com/example/myproduct/server/MyProductJsonController.java

    package com.example.myproduct.server;
    
    import com.example.myproduct.user.table.TableBuilder;
    
    import org.springframework.http.MediaType;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import java.util.List;
    
    @RestController
    public class MyProductJsonController {
    
        @RequestMapping(value = "/json", produces = MediaType.APPLICATION_JSON_VALUE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 511 bytes
    - Viewed (0)
  5. pkg/registry/rbac/escalation_check.go

    func BindingAuthorized(ctx context.Context, roleRef rbac.RoleRef, bindingNamespace string, a authorizer.Authorizer) bool {
    	if a == nil {
    		return false
    	}
    
    	user, ok := genericapirequest.UserFrom(ctx)
    	if !ok {
    		return false
    	}
    
    	attrs := authorizer.AttributesRecord{
    		User: user,
    		Verb: "bind",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  6. Dockerfile.dev

    FROM minio/minio:latest
    
    ENV PATH=/opt/bin:$PATH
    
    COPY ./minio /opt/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 02 16:54:36 UTC 2022
    - 227 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

            then:
            output.path == 'bin'
        }
    
        def "Custom output location defined in dsl"() {
            setup:
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
                       defaultOutputDir = file('custom-bin')
                   }
               }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. arm_compiler.BUILD

    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 12 11:17:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_goroot_PATH.txt

    # https://go.dev/issue/51473: to avoid the need for tests to rely on
    # runtime.GOROOT, 'go test' should run the test with its own GOROOT/bin
    # at the beginning of $PATH.
    
    [short] skip
    
    [!GOOS:plan9] env PATH=
    [GOOS:plan9] env path=
    go test .
    
    [!GOOS:plan9] env PATH=$WORK${/}bin
    [GOOS:plan9] env path=$WORK${/}bin
    go test .
    
    -- go.mod --
    module example
    
    go 1.19
    -- example_test.go --
    package example
    
    import (
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 795 bytes
    - Viewed (0)
  10. pkg/test/echo/docker/Dockerfile.app_sidecar

    # Sudoers used to allow tcpdump and other debug utilities.
    COPY sudoers /etc/sudoers
    
    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 860 bytes
    - Viewed (0)
Back to top