Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,128 for continues (0.67 sec)

  1. src/path/match.go

    				if ok {
    					// if we're the last chunk, make sure we exhausted the name
    					if len(pattern) == 0 && len(t) > 0 {
    						continue
    					}
    					name = t
    					continue Pattern
    				}
    				if err != nil {
    					return false, err
    				}
    			}
    		}
    		// Before returning false with no error,
    		// check that the remainder of the pattern is syntactically valid.
    		for len(pattern) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            }
    
            then: "build progress events must be forwarded to the attached listeners"
            events.assertIsABuild()
        }
    
        def "stops dispatching events to progress listeners when a listener fails and continues with build"() {
            given:
            goodCode()
    
            when: "launching a build"
            List<ProgressEvent> resultsOfFirstListener = []
            List<ProgressEvent> resultsOfLastListener = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. src/io/fs/walk.go

    // argument "dir/a".
    //
    // The d argument is the [DirEntry] for the named path.
    //
    // The error result returned by the function controls how [WalkDir]
    // continues. If the function returns the special value [SkipDir], WalkDir
    // skips the current directory (path if d.IsDir() is true, otherwise
    // path's parent directory). If the function returns the special value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. docs/contribute/code_of_conduct.md

    of releasing and managing open source software. We’ve seen incredible support and enthusiasm from
    thousands of people who have already contributed to our projects — and we want to ensure our community
    continues to be truly open for everyone.
    
    This code of conduct outlines our expectations for participants, as well as steps to reporting
    unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. src/html/template/escape.go

    }
    
    // rangeContext holds information about the current range loop.
    type rangeContext struct {
    	outer     *rangeContext // outer loop
    	breaks    []context     // context at each break action
    	continues []context     // context at each continue action
    }
    
    // makeEscaper creates a blank escaper for the given set.
    func makeEscaper(n *nameSpace) escaper {
    	return escaper{
    		n,
    		map[string]context{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    //
    // A ratchetingValueValidator will be constructed and added to the tree for
    // each explored sub-index and sub-property during validation.
    //
    // It's main job is to keep the old/new values correlated as the traversal
    // continues, and postprocess errors according to our ratcheting policy.
    //
    // ratchetingValueValidator is not thread safe.
    type ratchetingValueValidator struct {
    	// schemaArgs provides the arguments to use in the temporary SchemaValidator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    // and 6 for level 1,
    // using an exec func that simply sleeps for 250 ms, for
    // 25 seconds.  The first 10 seconds of behavior are ignored, allowing
    // the borrowing to start at any point during that time.  The test
    // continues for another 15 seconds, and checks that the delivered
    // concurrency is about 16 for flow 0 and 6 for flow 1.
    func TestBorrowing(t *testing.T) {
    	clientsPerFlow := [2]int{24, 6}
    	metrics.Register()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes.go

    		simpleStmt
    	}
    
    	BranchStmt struct {
    		Tok   token // Break, Continue, Fallthrough, or Goto
    		Label *Name
    		// Target is the continuation of the control flow after executing
    		// the branch; it is computed by the parser if CheckBranches is set.
    		// Target is a *LabeledStmt for gotos, and a *SwitchStmt, *SelectStmt,
    		// or *ForStmt for breaks and continues, depending on the context of
    		// the branch. Target is not set for fallthroughs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    
    # However, if we take the union of the go.sum files...
    go list -mod=mod -deps -test all
    cmp go.mod go.mod.orig
    
    # ...then Go 1.17 continues to work...
    go list -deps -test -f $MODFMT all
    stdout '^example\.com/retract/incompatible v1\.0\.0$'
    
    # ...and 1.16 also works(‽), but selects a different version for the
    # external-test dependency.
    go mod edit -go=1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/path/filepath/match.go

    				if ok {
    					// if we're the last chunk, make sure we exhausted the name
    					if len(pattern) == 0 && len(t) > 0 {
    						continue
    					}
    					name = t
    					continue Pattern
    				}
    				if err != nil {
    					return false, err
    				}
    			}
    		}
    		return false, nil
    	}
    	return len(name) == 0, nil
    }
    
    // scanChunk gets the next segment of pattern, which is a non-star string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top