Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,526 for oranges (0.28 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ErrorHandlingChangeContainerTest.groovy

     */
    
    package org.gradle.internal.execution.history.changes
    
    import org.gradle.api.Describable
    import org.gradle.api.GradleException
    import spock.lang.Specification
    
    class ErrorHandlingChangeContainerTest extends Specification {
        def task = Stub(Describable) {
            getDisplayName() >> "task ':test'"
        }
        def delegate = Mock(ChangeContainer)
        def changes = new ErrorHandlingChangeContainer(task, delegate)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/CachingChangeContainerTest.groovy

            when:
            cachingChanges.accept(collectingVisitor)
            def reported = collectingVisitor.changes
    
            then:
            interaction {
                receivesChanges(change1, change2)
            }
            0 * _
    
            and:
            reported == [change1, change2]
        }
    
        private void receivesChanges(Change... changes) {
            1 * delegate.accept(_) >> { args ->
                ChangeVisitor visitor = args[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

    import org.gradle.internal.execution.history.changes.ExecutionStateChanges
    
    import java.time.Duration
    
    import static org.gradle.internal.execution.ExecutionEngine.Execution
    import static org.gradle.internal.execution.ExecutionEngine.ExecutionOutcome.UP_TO_DATE
    
    class SkipUpToDateStepTest extends StepSpec<IncrementalChangesContext> {
        def step = new SkipUpToDateStep<>(delegate)
        def changes = Mock(ExecutionStateChanges)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/html/template/url.go

    		case '!', '#', '$', '&', '*', '+', ',', '/', ':', ';', '=', '?', '@', '[', ']':
    			if norm {
    				continue
    			}
    		// Unreserved according to RFC 3986 sec 2.3
    		// "For consistency, percent-encoded octets in the ranges of
    		// ALPHA (%41-%5A and %61-%7A), DIGIT (%30-%39), hyphen (%2D),
    		// period (%2E), underscore (%5F), or tilde (%7E) should not be
    		// created by URI producers
    		case '-', '.', '_', '~':
    			continue
    		case '%':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentRegistry.java

         */
        enum ChangeBehavior {
            /**
             * When changes are detected, wait for a deployment request before rebuilding.
             *
             * The deployment needs to call {@link Deployment#status()} to trigger a rebuild wait for changes.
             */
            BLOCK_AND_REBUILD,
    
            /**
             * When changes are detected, block the deployment until all changes are incorporated.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 06:23:31 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  6. pkg/registry/core/limitrange/storage/storage.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/core/limitrange"
    )
    
    // REST implements a RESTStorage for limit ranges.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against limit ranges.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/InputBehavior.java

         *     <li>Changes for the property cannot be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        NON_INCREMENTAL(false, false),
    
        /**
         * Incremental inputs.
         *
         * <ul>
         *     <li>Changes to the property value can cause an incremental execution of the work</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/proxy/servicechangetracker.go

    type processServiceMapChangeFunc func(previous, current ServicePortMap)
    
    // serviceChange contains all changes to services that happened since proxy rules were synced.  For a single object,
    // changes are accumulated, i.e. previous is state from before applying the changes,
    // current is state after applying all of the changes.
    type serviceChange struct {
    	previous ServicePortMap
    	current  ServicePortMap
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/numberlines.go

    	endlines := make(map[ID]src.XPos)
    	ranges := make(map[int]lineRange)
    	note := func(p src.XPos) {
    		line := uint32(p.Line())
    		i := int(p.FileIndex())
    		lp, found := ranges[i]
    		change := false
    		if line < lp.first || !found {
    			lp.first = line
    			change = true
    		}
    		if line > lp.last {
    			lp.last = line
    			change = true
    		}
    		if change {
    			ranges[i] = lp
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

        }
    
        def "should report the absolute file path of the created files up to the limit and 'and some more changes' when the number of files added to the input directory is over the limit"() {
            given:
            // We need to put these files in subdirectories, since on Linux we'd stop watching a directory as soon as we
            // received file changes for all the files inside.
            def inputSubdirectories = (1..9).collect { inputDir.createDir("subdir${it}")}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top