Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for xworkdir (0.26 sec)

  1. buildscripts/verify-healing-empty-erasure-set.sh

    		args="$args http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/1/ http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/2/ http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/3/ http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/4/ http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/5/ http://127.0.0.1:$((start_port + i))${WORK_DIR}/$i/6/"
    	done
    
    	"${MINIO[@]}" --address ":$((start_port + 1))" $args >"${WORK_DIR}/dist-minio-server1.log" 2>&1 &
    	pid1=$!
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/installer.go

    }
    
    type installer struct {
    	ctx       resource.Context
    	workDir   string
    	manifests map[string][]string
    	mu        sync.Mutex
    }
    
    func newInstaller(ctx resource.Context, workDir string) *installer {
    	return &installer{
    		ctx:       ctx,
    		workDir:   workDir,
    		manifests: make(map[string][]string),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/workcmd/use.go

    // go.work file located in directory workDir.
    //
    // If dir is relative, it is interpreted relative to base.Cwd()
    // and its canonical form is relative to workDir if possible.
    // If dir is absolute or cannot be made relative to workDir,
    // its canonical form is absolute.
    //
    // Canonical absolute paths are clean.
    // Canonical relative paths are clean and slash-separated.
    func pathRel(workDir, dir string) (abs, canonical string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/state.go

    // initial working directory in workdir and its initial environment set to
    // initialEnv (or os.Environ(), if initialEnv is nil).
    //
    // The new State also contains pseudo-environment-variables for
    // ${/} and ${:} (for the platform's path and list separators respectively),
    // but does not pass those to subprocesses.
    func NewState(ctx context.Context, workdir string, initialEnv []string) (*State, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. buildscripts/heal-inconsistent-versions.sh

    		# remove mc source.
    		purge "${MC_BUILD_DIR}"
    	fi
    
    	"${MINIO[@]}" --address ":$start_port" "${WORK_DIR}/disk{1...4}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 5
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	"${PWD}/mc" mb --with-versioning minio/bucket
    
    	for i in $(seq 1 4); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/state/BuildSessionScopeFileTimeStampInspectorTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        File workDir
        BuildSessionScopeFileTimeStampInspector timestampInspector
    
        def setup() {
            workDir = tmpDir.testDirectory
            timestampInspector = new BuildSessionScopeFileTimeStampInspector(workDir)
        }
    
        def "last build timestamp is 0 on the first build"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 22 17:24:44 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  7. pkg/test/cert/ca/intermediate.go

    }
    
    // NewIntermediate creates a new intermediate CA for the given cluster.
    func NewIntermediate(workDir, config string, root Root) (Intermediate, error) {
    	ca := Intermediate{
    		KeyFile:  filepath.Join(workDir, "ca-key.pem"),
    		ConfFile: filepath.Join(workDir, "ca.conf"),
    		CSRFile:  filepath.Join(workDir, "ca.csr"),
    		CertFile: filepath.Join(workDir, "ca-cert.pem"),
    		Root:     root,
    	}
    
    	// Write out the CA config file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. samples/jwt-server/src/Dockerfile

    # build a jwt-server binary using the golang container
    FROM golang:1.19 as builder
    WORKDIR /go/src/istio.io/jwt-server/
    COPY . .
    RUN CGO_ENABLED=0 GOOS=linux go build -o jwt-server main.go
    
    FROM gcr.io/distroless/static-debian11@sha256:21d3f84a4f37c36199fd07ad5544dcafecc17776e3f3628baf9a57c8c0181b3f as distroless
    
    WORKDIR /bin/
    # copy the jwt-server binary to a separate container based on BASE_DISTRIBUTION
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

            toolingApi.requireIsolatedDaemons()
    
            disableJarCachingWhenUsingOldGradleVersion()
    
            def workDir = temporaryFolder.file("work")
            def implJar = workDir.file("action-impl.jar")
            def builder = new GradleBackedArtifactBuilder(new NoDaemonGradleExecuter(dist, temporaryFolder).withWarningMode(null), workDir)
    
            given:
            builder.sourceFile('ActionImpl.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/BuildSessionScopeFileTimeStampInspector.java

    @ServiceScope(Scope.BuildSession.class)
    public class BuildSessionScopeFileTimeStampInspector extends FileTimeStampInspector implements RootBuildLifecycleListener {
        public BuildSessionScopeFileTimeStampInspector(File workDir) {
            super(workDir);
        }
    
        @Override
        public String toString() {
            return "build scope cache";
        }
    
        @Override
        public void afterStart() {
            updateOnStartBuild();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top