Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for fileOpened (0.3 sec)

  1. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputsListener.java

        /**
         * Invoked when the code opens a file.
         *
         * @param file the absolute file that was open
         * @param consumer the name of the class that is opening the file
         */
        void fileOpened(File file, String consumer);
    
        void fileObserved(File file, String consumer);
    
        void fileSystemEntryObserved(File file, String consumer);
    
        void directoryContentObserved(File file, String consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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