Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 305 for Trune (0.12 sec)

  1. .github/workflows/arm-ci-extended.yml

                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository for nightly (skipped for releases)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended-cpp.yml

                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository for nightly (skipped for releases)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/regexp/syntax/compile.go

    	c.inst(InstFail)
    }
    
    var anyRuneNotNL = []rune{0, '\n' - 1, '\n' + 1, unicode.MaxRune}
    var anyRune = []rune{0, unicode.MaxRune}
    
    func (c *compiler) compile(re *Regexp) frag {
    	switch re.Op {
    	case OpNoMatch:
    		return c.fail()
    	case OpEmptyMatch:
    		return c.nop()
    	case OpLiteral:
    		if len(re.Rune) == 0 {
    			return c.nop()
    		}
    		var f frag
    		for j := range re.Rune {
    			f1 := c.rune(re.Rune[j:j+1], re.Flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  4. test/stringrange.go

    package main
    
    import (
    	"fmt"
    	"os"
    	"unicode/utf8"
    )
    
    func main() {
    	s := "\000\123\x00\xca\xFE\u0123\ubabe\U0000babe\U0010FFFFx"
    	expect := []rune{0, 0123, 0, 0xFFFD, 0xFFFD, 0x123, 0xbabe, 0xbabe, 0x10FFFF, 'x'}
    	offset := 0
    	var i int
    	var c rune
    	ok := true
    	cnum := 0
    	for i, c = range s {
    		r, size := utf8.DecodeRuneInString(s[i:len(s)]) // check it another way
    		if i != offset {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 08 21:01:23 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/util/cdi/cdi.go

    				c, name)
    		}
    	}
    	if !isAlphaNumeric(rune(name[len(name)-1])) {
    		return fmt.Errorf("invalid name %q, should end with a letter or digit", name)
    	}
    	return nil
    }
    
    func isLetter(c rune) bool {
    	return ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z')
    }
    
    func isDigit(c rune) bool {
    	return '0' <= c && c <= '9'
    }
    
    func isAlphaNumeric(c rune) bool {
    	return isLetter(c) || isDigit(c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. test/switch5.go

    // written, not just their values. Particularly useful for runes.
    func f8(r rune) {
    	const x = 10
    	switch r {
    	case 33, 33: // ERROR "duplicate case (33 in switch)?"
    	case 34, '"': // ERROR "duplicate case '"' .value 34. in switch"
    	case 35, rune('#'): // ERROR "duplicate case (rune.'#'. .value 35. in switch)?"
    	case 36, rune(36): // ERROR "duplicate case (rune.36. .value 36. in switch)?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. src/time/zoneinfo_plan9.go

    )
    
    var platformZoneSources []string // none on Plan 9
    
    func isSpace(r rune) bool {
    	return r == ' ' || r == '\t' || r == '\n'
    }
    
    // Copied from strings to avoid a dependency.
    func fields(s string) []string {
    	// First count the fields.
    	n := 0
    	inField := false
    	for _, rune := range s {
    		wasInField := inField
    		inField = !isSpace(rune)
    		if inField && !wasInField {
    			n++
    		}
    	}
    
    	// Now create them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 23:09:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    	atEOF    bool
    
    	pDst int // pDst points past the last written rune in dst.
    	pSrc int // pSrc points to the start of the currently scanned rune.
    
    	// checkpoints safe to return in Transform, where nDst <= pDst and nSrc <= pSrc.
    	nDst, nSrc int
    	err        error
    
    	sz   int  // size of current rune
    	info info // case information of currently scanned rune
    
    	// State preserved across calls to Transform.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/mime/grammar.go

    package mime
    
    import (
    	"strings"
    )
    
    // isTSpecial reports whether rune is in 'tspecials' as defined by RFC
    // 1521 and RFC 2045.
    func isTSpecial(r rune) bool {
    	return strings.ContainsRune(`()<>@,;:\"/[]?=`, r)
    }
    
    // isTokenChar reports whether rune is in 'token' as defined by RFC
    // 1521 and RFC 2045.
    func isTokenChar(r rune) bool {
    	// token := 1*<any (US-ASCII) CHAR except SPACE, CTLs,
    	//             or tspecials>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 01:06:05 UTC 2016
    - 828 bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/search.go

    			continue
    		} else if !errors.Is(err, modindex.ErrNotIndexed) {
    			m.AddError(err)
    		}
    
    		prune := pruneVendor
    		if isLocal {
    			prune |= pruneGoMod
    		}
    		walkPkgs(root, modPrefix, prune)
    	}
    }
    
    // walkFromIndex matches packages in a module using the module index. modroot
    // is the module's root directory on disk, index is the modindex.Module for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top