Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for startPos (0.22 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    func doAppend(rb *reorderBuffer, out []byte, p int) []byte {
    	rb.setFlusher(out, appendFlush)
    	src, n := rb.src, rb.nsrc
    	doMerge := len(out) > 0
    	if q := src.skipContinuationBytes(p); q > p {
    		// Move leading non-starters to destination.
    		rb.out = src.appendSlice(rb.out, p, q)
    		p = q
    		doMerge = patchTail(rb)
    	}
    	fd := &rb.f
    	if doMerge {
    		var info Properties
    		if p < n {
    			info = fd.info(src, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		*ss = 0
    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    MINIO_IDENTITY_LDAP_SERVER_STARTTLS         (on|off)    use StartTLS connection to AD/LDAP server, defaults to "off"
    ```
    
    The server address variable is _required_. TLS is assumed to be on by default. The port in the server address is optional and defaults to 636 if not provided.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    func doAppend(rb *reorderBuffer, out []byte, p int) []byte {
    	rb.setFlusher(out, appendFlush)
    	src, n := rb.src, rb.nsrc
    	doMerge := len(out) > 0
    	if q := src.skipContinuationBytes(p); q > p {
    		// Move leading non-starters to destination.
    		rb.out = src.appendSlice(rb.out, p, q)
    		p = q
    		doMerge = patchTail(rb)
    	}
    	fd := &rb.f
    	if doMerge {
    		var info Properties
    		if p < n {
    			info = fd.info(src, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    				}
    				ts := httptest.NewUnstartedServer(h)
    				ts.TLS = &tls.Config{
    					Certificates: []tls.Certificate{cert},
    					NextProtos:   []string{"http2", "http/1.1"},
    				}
    				ts.StartTLS()
    				return ts
    			},
    			ProxyTransport: utilnet.SetTransportDefaults(&http.Transport{TLSClientConfig: &tls.Config{
    				NextProtos:         []string{"http2", "http/1.1"},
    				InsecureSkipVerify: true,
    			}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

    // CHECK:  [[ZERO_2:%cst.*]] = arith.constant dense<0> : tensor<i32>
    // CHECK:  [[EXPANDED_START_INDEX:%.*]] = "tf.ExpandDims"([[ZERO]], [[ZERO_2]]) : (tensor<i32>, tensor<i32>) -> tensor<1xi32>
    // CHECK:  [[START_POS:%.*]] = "tf.Concat"([[ZERO_2]], [[EXPANDED_START_INDEX]], [[PARTIAL_START_POS]]) : (tensor<i32>, tensor<1xi32>, tensor<?xi32>) -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            checkMethodBase(requestBody).put("/api/admin/scheduler/setting").then().body("response.created", equalTo(true))
                    .body("response.status", equalTo(0));
        }
    
        protected static void startJob(final String namePrefix) {
            for (int i = 0; i < 30; i++) {
                final Map<String, Object> requestBody = new HashMap<>();
                final String schedulerId = getSchedulerIds(namePrefix).get(0);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner.go

    	s.nlsemi = false
    
    redo:
    	// skip white space
    	s.stop()
    	startLine, startCol := s.pos()
    	for s.ch == ' ' || s.ch == '\t' || s.ch == '\n' && !nlsemi || s.ch == '\r' {
    		s.nextch()
    	}
    
    	// token start
    	s.line, s.col = s.pos()
    	s.blank = s.line > startLine || startCol == colbase
    	s.start()
    	if isLetter(s.ch) || s.ch >= utf8.RuneSelf && s.atIdentChar(true) {
    		s.nextch()
    		s.ident()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    	server := httptest.NewUnstartedServer(handler)
    	server.EnableHTTP2 = true
    	server.StartTLS()
    	cli := server.Client()
    	cli.Timeout = clientTimeout
    	return server, func(req *http.Request) (*http.Response, error) {
    		return cli.Do(req)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/log/config.go

    	// vs. reading it's internal state.
    	useJSON atomic.Value
    )
    
    func init() {
    	// use our defaults for starters so that logging works even before everything is fully configured
    	_ = Configure(DefaultOptions())
    }
    
    // See: https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#LogSeverity
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top