Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 635 for discarded (0.16 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Transient.java

            }
    
            @Override
            public boolean isPresent() {
                return false;
            }
    
            private Object readResolve() {
                return DISCARDED;
            }
        }
    
        private static final Transient<Object> DISCARDED = new Discarded<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/HoldsProjectState.java

     */
    
    package org.gradle.api.internal.project;
    
    /**
     * A service can implement this interface to indicate that it holds mutable project scoped state that should be discarded when
     * projects are discarded.
     */
    public interface HoldsProjectState {
        /**
         * Discards any project state.
         */
        void discardAll();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:17 UTC 2022
    - 934 bytes
    - Viewed (0)
  3. architecture/build-state-model.md

    ### Build state
    
    The "build state" holds the state for a build within the build definition for a single build execution, and is contained by the build tree state.
    
    The build state is managed by the `BuildState` class.
    An instance is created for each build in the build definition, once per build execution and is discarded at the end of the execution. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. internal/ioutil/discard.go

    import (
    	"io"
    )
    
    // Discard is just like io.Discard without the io.ReaderFrom compatible
    // implementation which is buggy on NUMA systems, we have to use a simpler
    // io.Writer implementation alone avoids also unnecessary buffer copies,
    // and as such incurred latencies.
    var Discard io.Writer = discard{}
    
    // discard is /dev/null for Golang.
    type discard struct{}
    
    func (discard) Write(p []byte) (int, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 06 22:26:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/classloading/GroovySystemLoader.java

    public interface GroovySystemLoader {
        /**
         * Invoked when this Groovy system is to be discarded, so that the Groovy system can remove any static state it may have registered in other ClassLoaders.
         */
        void shutdown();
    
        /**
         * Invoked when another ClassLoader is discarded, so that this Groovy system can remove state for the classes loaded from the ClassLoader
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            configurationCacheFails 'broken'
    
            then:
            failure.assertTasksExecuted()
    
            and:
            configurationCache.assertStateStoreFailed()
            outputContains("Configuration cache entry discarded due to serialization error.")
            failure.assertHasFailures(1)
            failure.assertHasFileName("Build file '${buildFile.absolutePath}'")
            failure.assertHasLineNumber(4)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionFactory.java

         *
         * <p>The collection is not live. The provided array is queried on construction and discarded.
         */
        FileCollectionInternal fixed(File... files);
    
        /**
         * Creates a {@link FileCollection} with the given files as content.
         *
         * <p>The collection is not live. The provided {@link Collection} is queried on construction and discarded.
         */
        FileCollectionInternal fixed(Collection<File> files);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            @Override
            String getStoreAction() {
                if (totalProblems == 0) {
                    return "discarded"
                } else {
                    return "discarded with ${problemsString}"
                }
            }
        }
    
        static class StateRecreateDetails extends StateStoreDetails implements HasInvalidationReason {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

            int nextChar = next();
            if (nextChar == '\n') {
                return true; // '\\\n' discarded from stream
            } else if (nextChar == '\r') {
                int followingChar = next();
                if (followingChar == '\n') {
                    return true; // '\\\r\n' discarded from stream
                }
                pushBack(nextChar);
                pushBack(followingChar);
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    isFailingBuildDueToSerializationError -> log("Configuration cache entry discarded with {}.", problemCountString)
                    cacheAction == STORE && discardStateDueToProblems && !hasProblems -> log("Configuration cache entry discarded${incompatibleTasksSummary()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top