Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,203 for aranges (0.29 sec)

  1. .github/pull_request_template.md

    **Please check any characteristics that apply to this pull request.**
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 14:29:43 UTC 2023
    - 718 bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbWatchHandle.java

         * implementations.
         * 
         * Changes in between these calls (as long as the file is open) are buffered by the server, so iteratively calling
         * this method should provide all changes (size of that buffer can be adjusted through
         * {@link jcifs.Configuration#getNotifyBufferSize()}).
         * If the server cannot fulfill the request because the changes did not fit the buffer
         * it will return an empty list of changes.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. RELEASE_BRANCHES.md

    * Cases for other API changes require TOC approval
        * Simple `meshConfig` changes have been approved in the past. Functionality should not be enabled by default.
    * For large API changes, 2 members of the TOC must approve the PR before release manager approval in the release branch
      of the istio/api repository. This does not have to wait for the weekly TOC meeting.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 12 23:27:43 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top