Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 477 for discarded (0.29 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/winstats/perfcounters_test.go

    			counter:   bytesSentPerSecondQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Received Discarded Query": {
    			counter:   packetsReceivedDiscardedQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Received Errors Query": {
    			counter:   packetsReceivedErrorsQuery,
    			skipCheck: true,
    		},
    		"Net Adapter Packets Outbound Discarded Query": {
    			counter:   packetsOutboundDiscardedQuery,
    			skipCheck: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

                    doLast { t -> t.project }
                }
            """
    
            when:
            configurationCacheFails ":inc:sub:broken"
    
            then:
            outputContains "Configuration cache entry discarded with 3 problems."
            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'inc/sub/build.gradle': line 2: registration of listener on 'Gradle.buildFinished' is unsupported".replace('/', File.separator))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top