Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 247 for Touch (0.05 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.TestUtil
    import org.gradle.work.InputChanges
    
    import java.util.concurrent.Callable
    
    import static org.apache.commons.io.FileUtils.touch
    import static org.gradle.api.internal.project.taskfactory.AnnotationProcessingTasks.Bean
    import static org.gradle.api.internal.project.taskfactory.AnnotationProcessingTasks.Bean2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

                        from("external/d")
                    }
    
                    archiveFileName = "external.jar"
                }
            """
            ['a', 'b', 'c', 'd'].each {
                file("external/$it").touch()
            }
            // Generate external jar with entries in alphabetical order
            def externalJar = file('build/libs/external.jar')
            succeeds(":a:javadoc", "-Dreverse=false")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. .github/workflows/stale-pr.yml

              operations-per-run: 50
              ascending: true
              exempt-all-milestones: true
    
              # ISSUES (deactivated) ----------------------------------------------
              # This workflow should touch no issues, so times are set to -1
              # (see actions/stale documentation for the behavior)
              days-before-issue-stale: -1
              stale-issue-label: stale
              stale-issue-message: >
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. ci/official/wheel_test/update_requirements.sh

    echo "tensorflow @ file://localhost/$TENSORFLOW_WHEEL_PATH" > requirements_wheel_test.in
    
    # Create the requirements_lock file
    REQUIREMENTS_LOCK_FILE="requirements_lock_${PYTHON_VERSION}.txt"
    touch "$REQUIREMENTS_LOCK_FILE"
    
    ### Update the requirements_lock file
    bazel run --experimental_convenience_symlinks=ignore --repo_env=REQUIREMENTS_FILE_NAME=requirements_wheel_test.in //:requirements_${PYTHON_VERSION}.update
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

            where:
            fileName << ScriptFileUtil.getValidSettingsFileNames()
        }
    
        def "does not treat buildSrc with no settings file as undefined build"() {
            given:
            settingsFile.touch()
            file("buildSrc/build.gradle") << """
                plugins {
                    id "groovy-gradle-plugin"
                }
            """
            file("buildSrc/src/main/groovy/Dummy.groovy") << "class Dummy {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. hack/verify-openapi-docs-urls.sh

    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. docs/site-replication/run-sse-kms-object-replication.sh

    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/mpartobj
    shred -s 500M /tmp/data/mpartobj
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

            const hdr = document.getElementById(id);
            if (hdr == null) return;
            const fn = function() { sortBy(column) };
            hdr.addEventListener('click', fn);
            hdr.addEventListener('touch', fn);
          }
          bindSort('flathdr1', 'Flat');
          bindSort('flathdr2', 'Flat');
          bindSort('cumhdr1', 'Cum');
          bindSort('cumhdr2', 'Cum');
          bindSort('namehdr', 'Name');
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/apitesting/fuzzer/valuefuzz.go

    limitations under the License.
    */
    
    package fuzzer
    
    import (
    	"reflect"
    )
    
    // ValueFuzz recursively changes all basic type values in an object. Any kind of references will not
    // be touch, i.e. the addresses of slices, maps, pointers will stay unchanged.
    func ValueFuzz(obj interface{}) {
    	valueFuzz(reflect.ValueOf(obj))
    }
    
    func valueFuzz(obj reflect.Value) {
    	switch obj.Kind() {
    	case reflect.Array:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml

            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-touch</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top