Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,651 for _start (0.1 sec)

  1. 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)
  2. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                andx = null;
    
                dst[start + ANDX_COMMAND_OFFSET] = (byte)0xFF;
                dst[start + ANDX_RESERVED_OFFSET] = (byte)0x00;
    //            dst[start + ANDX_OFFSET_OFFSET] = (byte)0x00;
    //            dst[start + ANDX_OFFSET_OFFSET + 1] = (byte)0x00;
                dst[start + ANDX_OFFSET_OFFSET] = (byte)0xde;
                dst[start + ANDX_OFFSET_OFFSET + 1] = (byte)0xde;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/syscall/zerrors_openbsd_ppc64.go

    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0xff
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    	CSUSP                             = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_openbsd_riscv64.go

    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0xff
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    	CSUSP                             = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            when:
            def result = execHandle.start().waitForFinish()
    
            then:
            execHandle.state == ExecHandleState.FAILED
            result.exitValue == 72
    
            when:
            result.assertNormalExitValue()
    
            then:
            def e = thrown(ExecException)
            e.message.contains "finished with non-zero exit value 72"
        }
    
        void "start fails when process cannot be started"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
Back to top