Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 477 for discarded (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
         * value is discarded (or has never been set in the first place), the convention (default value) for this
         * property, if specified, will be used to provide the value instead.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

    public interface ResolutionStrategyInternal extends ResolutionStrategy {
        /**
         * Discard any configuration state that is not required after graph resolution has been attempted.
         */
        void maybeDiscardStateRequiredForGraphResolution();
    
        /**
         * Sets whether or not any configuration resolution is final and the state required for resolution can be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

            failure.assertHasErrorOutput('error: package rx.observers does not exist')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/11995")
        def "provides a human understable error message when some variants were discarded and the remainder is ambiguous"() {
            buildFile << """
                apply plugin: 'java-base'
    
                configurations {
                    consumer {
                        assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pkg/kubelet/winstats/network_stats.go

    	bytesSentPerSecondQuery       = "\\Network Adapter(*)\\Bytes Sent/sec"
    	packetsReceivedDiscardedQuery = "\\Network Adapter(*)\\Packets Received Discarded"
    	packetsReceivedErrorsQuery    = "\\Network Adapter(*)\\Packets Received Errors"
    	packetsOutboundDiscardedQuery = "\\Network Adapter(*)\\Packets Outbound Discarded"
    	packetsOutboundErrorsQuery    = "\\Network Adapter(*)\\Packets Outbound Errors"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/AbstractDependencyVerificationIntegTest.groovy

    """
            }
        }
    
        protected void assertConfigCacheDiscarded() {
            if (GradleContextualExecuter.isConfigCache()) {
                failure.assertOutputContains("Configuration cache entry discarded")
            }
        }
    
        protected void assertVerificationError(boolean terse, @DelegatesTo(value = VerificationErrorHelper, strategy = Closure.DELEGATE_FIRST) Closure<?> verification) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void run() {
            // Split the `with` operation so that the `associatedBuildOperation` can be discarded when we wait in `process.waitFor()`
            try {
                CurrentBuildOperationRef.instance().with(this.associatedBuildOperation, () -> {
                    startProcess();
    
                    execHandle.started();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            configurationCacheFails(*(projectConfig.tasks))
            server.resetExpectations()
    
            then:
            configurationCache.assertStateStoreFailed()
            outputContains("Configuration cache entry discarded")
            failure.assertHasFailures(1)
            failure.assertHasDescription("Configuration cache problems found in this build")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildModelParameters.java

        }
    
        /**
         * Will the build model, that is the configured Gradle and Project objects, be required during the build execution?
         *
         * <p>When the build model is not required, certain state can be discarded or not created.
         */
        public boolean isRequiresBuildModel() {
            return requiresBuildModel;
        }
    
        public boolean isConfigureOnDemand() {
            return configureOnDemand;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventTransformer.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    /**
     * Transforms the stream of output events to discard progress operations that are not interesting to the logging subsystem. This reduces the amount of work that downstream consumers have to do to process the stream. For example, these discarded events don't need to be written to the daemon client.
     */
    public class OutputEventTransformer implements OutputEventListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

            // This lifecycle could be simplified and allow the dependencies to be discarded at this point
            pruned = false;
            waitingFor.add(node);
            return this;
        }
    
        @Override
        public NavigableSet<Node> getMustSuccessors() {
            return ImmutableSortedSet.of();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top