Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,997 for START (0.16 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/ProviderStartParameterConverterTest.groovy

        def "allows configuring the start parameter with build arguments"() {
            params.getArguments() >> ['-PextraProperty=foo', '-m']
    
            when:
            def start = new ProviderStartParameterConverter().toStartParameter(params, layout, properties)
    
            then:
            start.projectProperties['extraProperty'] == 'foo'
            start.dryRun
        }
    
        def "the start parameter is configured from properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_cache_test.go

    		&model.Service{Hostname: "foo.com"}, nil)
    	work := func(start time.Time, n int32) {
    		v := mkv(n)
    		time.Sleep(time.Millisecond * time.Duration(rand.Intn(100)))
    		req := &model.PushRequest{Start: start}
    		c.Add(k, req, v)
    	}
    	// 5 round of xds push
    	for vals := 0; vals < 5; vals++ {
    		c.ClearAll()
    		n.Inc()
    		start := time.Now()
    		for i := 0; i < 5; i++ {
    			go work(start, n.Load())
    		}
    		retry.UntilOrFail(t, func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    	s.next = s.start
    }
    
    // deleteRange removes the given range from s.b before the current token.
    func (s *scanner) deleteRange(start, end int) {
    	s.b = s.b[:start+copy(s.b[start:], s.b[end:])]
    	diff := end - start
    	s.next -= diff
    	s.start -= diff
    	s.end -= diff
    }
    
    // scan parses the next token of a BCP 47 string.  Tokens that are larger
    // than 8 characters or include non-alphanumeric characters result in an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. cmd/httprange.go

    		return 0, 0, err
    	}
    
    	start = h.Start
    	if h.IsSuffixLength {
    		start = resourceSize + h.Start
    		if start < 0 {
    			start = 0
    		}
    	}
    	return start, length, nil
    }
    
    // Parse a HTTP range header value into a HTTPRangeSpec
    func parseRequestRangeSpec(rangeString string) (hrange *HTTPRangeSpec, err error) {
    	// Return error if given range string doesn't start with byte range prefix.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		}
    	}
    
    	// Assign line comments to syntax immediately following.
    	for _, x := range in.pre {
    		start, _ := x.Span()
    		if debug {
    			fmt.Fprintf(os.Stderr, "pre %T :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte)
    		}
    		xcom := x.Comment()
    		for len(line) > 0 && start.Byte >= line[0].Start.Byte {
    			if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            when:
            handler.reservePort()
            handler.start(10, {})
            handler.start(11, {})
            handler.start(12, {})
    
            then:
            2 * factory.create(_ as String) >> Mock(ManagedExecutor)
        }
    
        def "cannot start contention handling when the handler was stopped"() {
            handler.stop()
    
            when:
            handler.start(10, {})
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/internal/diff/diff.go

    		// have an empty match: start.x==end.x and start.y==end.y.
    		start := m
    		for start.x > done.x && start.y > done.y && x[start.x-1] == y[start.y-1] {
    			start.x--
    			start.y--
    		}
    		end := m
    		for end.x < len(x) && end.y < len(y) && x[end.x] == y[end.y] {
    			end.x++
    			end.y++
    		}
    
    		// Emit the mismatched lines before start into this chunk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/openshift.go

    		}
    		if n != 2 {
    			return Block{}, ErrBlockSlashBadFormat
    		}
    		return Block{Start: start, End: start + size - 1}, nil
    	}
    
    	var start, end uint32
    	n, err := fmt.Sscanf(in, "%d-%d", &start, &end)
    	if err != nil {
    		return Block{}, err
    	}
    	if n != 2 {
    		return Block{}, ErrBlockDashBadFormat
    	}
    	return Block{Start: start, End: end}, nil
    }
    
    func (b Block) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            server.expect("f")
            server.start()
    
            when:
            async {
                start {
                    succeeds("a")
                }
                start {
                    succeeds("b")
                }
                server.waitForRequests(2)
                succeeds("c")
                start {
                    succeeds("d")
                }
                start {
                    succeeds("e")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestListenerIntegrationTest.groovy

                    void beforeSuite(TestDescriptor suite) { println "START [\$suite] [\$suite.name]" }
                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH [\$suite] [\$suite.name] [\$result.resultType] [\$result.testCount]" }
                    void beforeTest(TestDescriptor test) { println "START [\$test] [\$test.name]" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top