Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for xworkdir (0.42 sec)

  1. 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)
  2. src/cmd/go/internal/work/action.go

    	ModeVetOnly = 1 << 8
    )
    
    // NewBuilder returns a new Builder ready for use.
    //
    // If workDir is the empty string, NewBuilder creates a WorkDir if needed
    // and arranges for it to be removed in case of an unclean exit.
    // The caller must Close the builder explicitly to clean up the WorkDir
    // before a clean exit.
    func NewBuilder(workDir string) *Builder {
    	b := new(Builder)
    
    	b.actionCache = make(map[cacheKey]*Action)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/work/shell.go

    //
    //	fmtCmd replaces the value of b.WorkDir with $WORK.
    func (sh *Shell) fmtCmd(dir string, format string, args ...any) string {
    	cmd := fmt.Sprintf(format, args...)
    	if sh.workDir != "" && !strings.HasPrefix(cmd, "cat ") {
    		cmd = strings.ReplaceAll(cmd, sh.workDir, "$WORK")
    		escaped := strconv.Quote(sh.workDir)
    		escaped = escaped[1 : len(escaped)-1] // strip quote characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. 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)
  6. pkg/test/framework/components/istio/kube.go

    	}
    
    	i := &istioImpl{
    		env:                  ctx.Environment().(*kube.Environment),
    		cfg:                  cfg,
    		ctx:                  ctx,
    		workDir:              workDir,
    		values:               iop.Spec.Values.Fields,
    		installer:            newInstaller(ctx, workDir),
    		meshConfig:           &meshConfig{configMap: *newConfigMap(ctx, cfg.SystemNamespace, revisions)},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/telemetry/npm

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npm \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  10. prow/release-commit.sh

    # In CI we want to store the outputs to artifacts, which will preserve the build
    # If not specified, we can just create a temporary directory
    WORK_DIR="$(mktemp -d)/build"
    mkdir -p "${WORK_DIR}"
    
    MANIFEST=$(cat <<EOF
    version: ${VERSION}
    docker: ${DOCKER_HUB}
    directory: ${WORK_DIR}
    ignoreVulnerability: true
    dependencies:
    ${DEPENDENCIES:-$(cat <<EOD
      istio:
        localpath: ${ROOT}
      api:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top