Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fileOpened (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/GroovyFileInterceptors.java

            return ResourceGroovyMethods.readLines(self);
        }
    
        @InterceptGroovyCalls
        @InstanceMethod
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static List<String> intercept_readLines(
            @Receiver File self,
            String charset,
            @CallerClassName String consumer
        ) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            listener().fileOpened(receiver, consumer);
            return FilesKt.readText(receiver, charset);
        }
    
        public static String kotlinIoFilesKtReadTextDefault(File receiver, Charset charset, int defaultMask, Object defaultMarker, String consumer) throws Throwable {
            listener().fileOpened(receiver, consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        fun addEnvVariableToFingerprint(key: String, value: String?, consumer: String? = null) {
            sink().envVariableRead(key, value)
            reportUniqueEnvironmentVariableInput(key, consumer)
        }
    
        override fun fileOpened(file: File, consumer: String?) {
            if (isInputTrackingDisabled() || isExecutingWork()) {
                // Ignore files that are read as part of the task actions. These should really be task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

                        .solution("Make sure that the catalog file '" + modelFile.getName() + "' exists before importing it")));
            }
    
            Instrumented.fileOpened(modelFile, getClass().getName());
            try {
                TomlCatalogFileParser.parse(modelFile.toPath(), this, this::getProblemsService);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top