Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,743 for run1 (0.36 sec)

  1. src/regexp/syntax/prog_test.go

      2	rune1 "a" -> 3
      3	alt -> 2, 4
      4	cap 3 -> 5
      5	cap 4 -> 6
      6	rune1 "b" -> 7
      7	alt -> 6, 8
      8	cap 5 -> 9
      9	match
    `},
    	{"a+|b+", `  0	fail
      1	rune1 "a" -> 2
      2	alt -> 1, 6
      3	rune1 "b" -> 4
      4	alt -> 3, 6
      5*	alt -> 1, 3
      6	match
    `},
    	{"A[Aa]", `  0	fail
      1*	rune1 "A" -> 2
      2	rune "A"/i -> 3
      3	match
    `},
    	{"(?:(?:^).)", `  0	fail
      1*	empty 4 -> 2
      2	anynotnl -> 3
      3	match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    		}
    	}
    	return
    }
    
    func (s *Scanner) scanNumber(ch rune, seenDot bool) (rune, rune) {
    	base := 10         // number base
    	prefix := rune(0)  // one of 0 (decimal), '0' (0-octal), 'x', 'o', or 'b'
    	digsep := 0        // bit 0: digit present, bit 1: '_' present
    	invalid := rune(0) // invalid digit in literal, or 0
    
    	// integer part
    	var tok rune
    	var ds int
    	if !seenDot {
    		tok = Int
    		if ch == '0' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	p.numRunes += len(re.Rune)
    	if re.Op == OpCharClass && len(re.Rune) == 2 && re.Rune[0] == re.Rune[1] {
    		// Single rune.
    		if p.maybeConcat(re.Rune[0], p.flags&^FoldCase) {
    			return nil
    		}
    		re.Op = OpLiteral
    		re.Rune = re.Rune[:1]
    		re.Flags = p.flags &^ FoldCase
    	} else if re.Op == OpCharClass && len(re.Rune) == 4 &&
    		re.Rune[0] == re.Rune[1] && re.Rune[2] == re.Rune[3] &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/spec/conversions.go

    func _[T ~string](x []rune) T                           { return T(x) }
    func _[X ~[]byte, T ~string](x X) T                     { return T(x) }
    func _[X ~[]rune, T ~string](x X) T                     { return T(x) }
    func _[X Integer | ~[]byte | ~[]rune, T ~string](x X) T { return T(x) }
    func _[X Integer | ~[]byte | ~[]rune, T ~*string](x X) T {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/strings/strings.go

    	// the closure once per rune.
    	prev := ' '
    	return Map(
    		func(r rune) rune {
    			if isSeparator(prev) {
    				prev = r
    				return unicode.ToTitle(r)
    			}
    			prev = r
    			return r
    		},
    		s)
    }
    
    // TrimLeftFunc returns a slice of the string s with all leading
    // Unicode code points c satisfying f(c) removed.
    func TrimLeftFunc(s string, f func(rune) bool) string {
    	i := indexFunc(s, f, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/term/terminal.go

    		}
    	}
    
    	return utf8.RuneError, b
    }
    
    // queue appends data to the end of t.outBuf
    func (t *Terminal) queue(data []rune) {
    	t.outBuf = append(t.outBuf, []byte(string(data))...)
    }
    
    var space = []rune{' '}
    
    func isPrintable(key rune) bool {
    	isInSurrogateArea := key >= 0xd800 && key <= 0xdbff
    	return key >= 32 && !isInSurrogateArea
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/config.go

    	}
    	return nil, genericclioptions.NoCompatiblePrinterError{OutputFormat: &outputFormat, AllowedFormats: []string{output.TextOutput}}
    }
    
    // Run runs the images command and writes the result to the io.Writer passed in
    func (i *ImagesList) Run(out io.Writer, printer output.Printer) error {
    	imgs := images.GetControlPlaneImages(&i.cfg.ClusterConfiguration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. docs/site-replication/run-multi-site-ldap.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. docs/site-replication/run-multi-site-oidc.sh

    	exit_1
    fi
    
    ./mc admin policy create minio1 projecta ./docs/site-replication/rw.json
    sleep 5
    
    # Generate STS credential with STS call to minio1
    STS_CRED=$(MINIO_ENDPOINT=http://localhost:9001 go run ./docs/site-replication/gen-oidc-sts-cred.go)
    
    MC_HOST_foo=http://${STS_CRED}@localhost:9001 ./mc ls foo
    if [ $? -ne 0 ]; then
    	echo "Expected sts credential to work, exiting.."
    	exit_1
    fi
    
    sleep 2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. test/typeparam/builtins.go

    type M2 interface {
    	map[string]int | map[string]float64
    }
    type M3 interface{ map[string]int | map[rune]int }
    type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
    
    func g1[T M1](m T) {
    	delete(m, "foo")
    }
    
    func g2[T M2](m T) {
    	delete(m, "foo")
    }
    
    func g3[T M4[rune, V], V any](m T) {
    	delete(m, 'k')
    }
    
    // make
    
    func m1[
    	S1 interface{ []int },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top