Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for xworkdir (0.13 sec)

  1. src/cmd/go/internal/modfetch/codehost/svn.go

    	}
    
    	exportDir := filepath.Join(workDir, "export")
    	// Remove any existing contents from a previous (failed) run.
    	if err := os.RemoveAll(exportDir); err != nil {
    		return err
    	}
    	defer os.RemoveAll(exportDir) // best-effort
    
    	release, err = base.AcquireNet()
    	if err != nil {
    		return err
    	}
    	_, err = Run(ctx, workDir, []string{
    		"svn", "export",
    		"--non-interactive",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. samples/tcp-echo/src/Dockerfile

    #   limitations under the License.
    
    # build a tcp-echo binary using the golang container
    FROM golang:1.22 as builder
    WORKDIR /go/src/istio.io/tcp-echo-server/
    COPY main.go .
    RUN CGO_ENABLED=0 GOOS=linux go build -ldflags '-extldflags -static -s -w' -o tcp-echo main.go
    
    FROM scratch
    
    WORKDIR /bin/
    COPY --from=builder /go/src/istio.io/tcp-echo-server/tcp-echo .
    ENTRYPOINT [ "/bin/tcp-echo" ]
    CMD [ "9000", "hello" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 989 bytes
    - Viewed (0)
  3. buildscripts/resolve-right-versions.sh

    		purge "${MC_BUILD_DIR}"
    		exit 1
    	fi
    
    	(cd "${MC_BUILD_DIR}" && go build -o "$WORK_DIR/mc")
    
    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	"${WORK_DIR}/mc" cp --quiet -r "buildscripts/cicd-corpus/" "${WORK_DIR}/cicd-corpus/"
    
    	"${MINIO[@]}" --address ":$start_port" "${WORK_DIR}/cicd-corpus/disk{1...5}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 5
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/Dockerfile

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM python:3.12.1-slim
    
    WORKDIR /
    
    COPY requirements.txt ./
    RUN pip3 install -vvv --require-hashes --no-cache-dir -r requirements.txt
    
    COPY test-requirements.txt ./
    RUN pip3 install --no-cache-dir --require-hashes -r test-requirements.txt
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. tools/docker-builder/dockerfile/parse.go

    			k := s.Expand(c.Value[0])
    			v := s.Expand(c.Value[1])
    			s.labels[k] = v
    		case "ENV":
    			k := s.Expand(c.Value[0])
    			v := s.Expand(c.Value[1])
    			s.env[k] = v
    		case "WORKDIR":
    			v := s.Expand(c.Value[0])
    			s.workdir = v
    		case "RUN":
    			if o.ignoreRuns {
    				log.Warnf("Skipping RUN: %v", c.Value)
    			} else {
    				return empty, fmt.Errorf("unsupported RUN command: %v", c.Value)
    			}
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/script.go

    // the repository to be served.
    func (s *Server) loadScript(ctx context.Context, logger *log.Logger, scriptPath string, scriptContent []byte, workDir string) (http.Handler, error) {
    	ar := txtar.Parse(scriptContent)
    
    	if err := os.MkdirAll(workDir, 0755); err != nil {
    		return nil, err
    	}
    
    	st, err := s.newState(ctx, workDir)
    	if err != nil {
    		return nil, err
    	}
    	if err := st.ExtractFiles(ar); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. samples/wasm_modules/header_injector/Dockerfile

    FROM scratch
    ARG WASM_BINARY
    WORKDIR /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 70 bytes
    - Viewed (0)
  8. tests/integration/operator/uninstall_test.go

    			// For positive casse, use minimal profile, iop file will be deleted
    			t.NewSubTest("delete-iop-success").Run(func(t framework.TestContext) {
    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    				workDir, err := t.CreateTmpDirectory("operator-controller-test")
    				if err != nil {
    					t.Fatal("failed to create test directory")
    				}
    				cs := t.Clusters().Default()
    				cleanupInClusterCRs(t, cs)
    				t.Cleanup(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. Jenkinsfile

                                                    "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {
                                            String cmd = "${runITscommand} -Dmaven.repo.local=$WORK_DIR/.repository -DmavenDistro=$WORK_DIR/maven/apache-maven/target/apache-maven-bin.zip -Dmaven.test.failure.ignore"
    
                                            if (isUnix()) {
                                                sh 'df -hT'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzzers/dotdotpwn/Dockerfile

    FROM perl:5.32.1
    
    RUN git clone https://github.com/wireghoul/dotdotpwn
    WORKDIR /dotdotpwn
    COPY run.sh /dotdotpwn/
    RUN chmod +x /dotdotpwn/run.sh && apt-get update && apt-get install --no-install-recommends libwww-perl -y && apt-get clean && rm -rf /var/lib/apt/lists/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 293 bytes
    - Viewed (0)
Back to top