Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for touches (0.32 sec)

  1. 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)
  2. internal/s3select/csv/reader.go

    	input        chan *queueItem  // input for workers
    	queue        chan *queueItem  // output from workers in order
    	err          error            // global error state, only touched by Reader.Read
    	bufferPool   sync.Pool        // pool of []byte objects for input
    	csvDstPool   sync.Pool        // pool of [][]string used for output
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

        private DaemonContext candidate = Mock(DaemonContext)
    
        private TestFile javaHome = tmp.createDir("jdk")
    
        def setup() {
            javaHome.file("bin", OperatingSystem.current().getExecutableName("java")).touch()
        }
    
        DaemonRequestContext clientWants(Map args) {
            clientWants(args.requestedJvm,
                args.daemonOpts ?: [],
                args.applyInstrumentationAgent ?: false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            def fileCollection = Stub(FileCollectionInternal)
            fileCollectionFactory.resolving(["file"] as Object[]) >> fileCollection
            fileCollection.iterator() >> [fileToBeDeleted].iterator()
            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
            fileToBeDeleted.isFile() == false
        }
    
        def makesDir() {
            TestFile dirToBeCreated = tmpDir.file("parentDir", "dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    Vous devriez le faire après avoir ajouté toutes vos *paramètres de chemin*.
    
    ```Python hl_lines="2  12-21  24"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    !!! tip "Astuce"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. hack/make-rules/verify.sh

        "verify-golangci-lint.sh"              # runs in separate pull-kubernetes-verify-lint
        )
    fi
    
    # Exclude readonly package check in certain cases, aka, in periodic jobs we don't care and a readonly package won't be touched
    if [[ ${EXCLUDE_READONLY_PACKAGE:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-readonly-packages.sh"  # skip in CI, if env is set
        )
    fi
    
    # Only run known fast checks in quick mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. 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)
  9. docs/fr/docs/advanced/additional-responses.md

    ```Python
    old_dict = {
        "old key": "old value",
        "second old key": "second old value",
    }
    new_dict = {**old_dict, "new key": "new value"}
    ```
    
    Ici, `new_dict` contiendra toutes les paires clé-valeur de `old_dict` plus la nouvelle paire clé-valeur :
    
    ```Python
    {
        "old key": "old value",
        "second old key": "second old value",
        "new key": "new value",
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_IE11() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko)");
            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Chrome() {
            getMockRequest().addHeader("user-agent",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top