Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 258 for pouch (0.03 sec)

  1. tensorflow/compiler/mlir/README.md

    setting up your local repository for Bazel build. For this you will need to
    create bazel workspace and build files:
    
    ```sh
    LLVM_SRC=... # this the path to the LLVM local source directory you intend to use.
    touch ${LLVM_SRC}/BUILD.bazel ${LLVM_SRC}/WORKSPACE
    ```
    
    You can then use this overlay to build TensorFlow:
    
    ```
    bazel build --override_repository="llvm-raw=${LLVM_SRC}" \
      -c opt tensorflow/compiler/mlir:tf-opt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 21:50:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/packaging/rpm/init.d/fess

        if [ -n "$PID_DIR" ] && [ ! -e "$PID_DIR" ]; then
            mkdir -p "$PID_DIR" && chown "$FESS_USER":"$FESS_GROUP" "$PID_DIR"
        fi
        if [ -n "$pidfile" ] && [ ! -e "$pidfile" ]; then
            touch "$pidfile" && chown "$FESS_USER":"$FESS_GROUP" "$pidfile"
        fi
    
        echo -n $"Starting $prog: "
        # if not running, start it up here, usually something like "daemon $exec"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ShortExceptionFormatterTest.groovy

                // java.lang.AssertionError(String) is private, so explicit cast to Object is needed here
                // to call public AssertionError(Object)
                new AssertionError((Object) "ouch").tap { stackTrace = createCauseTrace() }
            ]
            expect:
            formatter.format(testDescriptor, exceptions) == """\
        java.io.IOException at FileName1.java:11
        java.lang.AssertionError at FileName0.java:1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

            then:
            with(taskSuccessResult(':incrementalTask')) {
                !incremental
                executionReasons[0].contains("No history")
            }
    
            when:
            file('src/a').touch()
            file('src/b').touch()
    
            and:
            runBuild('incrementalTask')
    
            then:
            with(taskSuccessResult(':incrementalTask')) {
                incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCleanupIntegrationTest.groovy

            }
            includedBuilds << buildB
    
            def staleFiles = [
                file("buildA/build/classes/java/main/stale"),
                file("buildB/build/classes/java/main/stale")]
            staleFiles*.touch()
    
            when:
            execute(buildA, 'build')
            then:
            staleFiles*.assertDoesNotExist()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:26 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. samples/health-check/liveness-command.yaml

        metadata:
          labels:
            app: liveness
        spec:
          containers:
          - name: liveness
            image: registry.k8s.io/busybox
            args:
            - /bin/sh
            - -c
            - touch /tmp/healthy; sleep 3600
            livenessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
              initialDelaySeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 14:35:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

                apply from: 'shared.gradle'
                println 'build.gradle'
            """
    
            succeeds "help"
    
            when: // already compiled shared script
            file('otherBuild/settings.gradle').touch()
            file('otherBuild/build.gradle') << "apply from: '../shared.gradle'"
            executer.usingProjectDirectory(file('otherBuild'))
            succeeds 'help'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. ci/official/requirements_updater/updater.sh

    # All commands run relative to this directory
    cd "$(dirname "${BASH_SOURCE[0]}")"
    
    mv BUILD.bazel BUILD
    
    SUPPORTED_VERSIONS=("3_9" "3_10" "3_11" "3_12")
    
    for VERSION in "${SUPPORTED_VERSIONS[@]}"
    do
      touch "requirements_lock_$VERSION.txt"
      bazel run \
        --experimental_convenience_symlinks=ignore \
        --enable_bzlmod=false \
        //:requirements_"$VERSION".update
      sed -i '/^#/d' requirements_lock_"$VERSION".txt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:05:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue30908.dir/a.go

    	}
    	vals := make(map[string]interface{})
    	s := string(data)
    	items := strings.Split(s, " ")
    	var err error
    	for _, item := range items {
    		vals[item] = s
    		if item == "error" {
    			err = errors.New("ouch")
    		}
    	}
    	*v = vals
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 15:00:08 UTC 2019
    - 593 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/DaemonJvmCompatibilityCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    
    class DaemonJvmCompatibilityCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            buildFile.touch()
            settingsFile << """
                rootProject.name = "root"
            """
        }
    
        @TargetGradleVersion(">=8.8")
        def "can run a build with Java 21 followed by another build with a different version"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top