Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 368 for printfile (0.22 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultArtifactCacheLockingAccessCoordinatorTest.groovy

            def file2 = resourcesDir.createDir("1/xyz").createFile("test.txt")
            def file3 = resourcesDir.createDir("2/uvw").createFile("test.txt")
            file2.parentFile.lastModified = 0
            file3.parentFile.lastModified = 0
    
            when:
            cacheLockingManager.close()
    
            then:
            file1.assertExists()
            file2.assertDoesNotExist()
            file3.assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/build.gradle.kts

        from(reports)
        into(layout.buildDirectory.file("generated-resources/report-resources/org/gradle/reporting"))
    }
    
    sourceSets.main {
        output.dir(reportResources.map { it.destinationDir.parentFile.parentFile.parentFile })
    }
    
    tasks.jar {
        inputs.files(flamegraph)
            .withPropertyName("flamegraph")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyParametersMetadataIntegrationTest.groovy

            expect:
            succeeds 'compileGroovy'
            def compiled = groovyClassFile("parameters/test/Person.class")
            compiled.exists()
    
            and:
            def compiledDir = compiled.parentFile.parentFile.parentFile.toURI().toURL()
            def compiledClassLoader = new URLClassLoader([compiledDir] as URL[])
            def loadedClass = compiledClassLoader.loadClass('parameters.test.Person')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

                ]),
                new RegularFileSnapshot(parentFile.absolutePath, parentFile.name, TestHashCodes.hashCodeFrom(8765), DefaultFileMetadata.file(123, 456, FileMetadata.AccessType.DIRECT))
            ])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

            }
    
            def currentCacheDir = createVersionSpecificCacheDir(GradleVersion.current(), daysToTriggerCleanup)
            def currentDist = createDistributionChecksumDir(GradleVersion.current()).parentFile
    
            when:
            succeeds("help")
    
            then:
            oldButRecentlyUsedGradleDist.assertAllDirsExist()
            oldNotRecentlyUsedGradleDist.assertAllDirsDoNotExist()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/PreCreateOutputParentsStepTest.groovy

                visitor.visitDestroyable(destroyableFile)
            }
    
            then:
            outputDir.assertIsEmptyDir()
            outputFile.parentFile.assertIsEmptyDir()
            localStateFile.parentFile.assertIsEmptyDir()
            !destroyableFile.parentFile.exists()
    
            then:
            1 * delegate.execute(work, context)
            0 * _
        }
    
        def "result is preserved"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                }
                return true;
            }
    
            final File parentFile = outputFile.getParentFile();
            if (!parentFile.exists()) {
                parentFile.mkdirs();
            }
            if (!parentFile.isDirectory()) {
                logger.warn("Not found: {}", parentFile.getAbsolutePath());
                return false;
            }
    
            return process(thumbnailId, responseData -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

        def fixture = new ConfigurationCacheFixture(this)
    
        def "restores task fields whose value is a #kind Java lambda"() {
            given:
            file("buildSrc/src/main/java/my/LambdaTask.java").tap {
                parentFile.mkdirs()
                text = """
                    package my;
    
                    import org.gradle.api.*;
                    import org.gradle.api.tasks.*;
    
                    public class LambdaTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            File parentFile = element.getParentFile();
            while (parentRelativePath != null && parentRelativePath != RelativePath.EMPTY_ROOT) {
                if (!filter.isSatisfiedBy(new ReadOnlyFileTreeElement(parentFile, parentRelativePath, stat))) {
                    return false;
                }
                parentRelativePath = parentRelativePath.getParent();
                parentFile = parentFile.getParentFile();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/mime/quotedprintable/reader.go

    // Package quotedprintable implements quoted-printable encoding as specified by
    // RFC 2045.
    package quotedprintable
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    )
    
    // Reader is a quoted-printable decoder.
    type Reader struct {
    	br   *bufio.Reader
    	rerr error  // last read error
    	line []byte // to be consumed before more of br
    }
    
    // NewReader returns a quoted-printable reader, decoding from r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
Back to top