Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 139 for myrunes (0.15 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    }
    
    // The s.Scopes slice contains variables were originally part of the
    // function being emitted, as well as variables that were imported
    // from various callee functions during the inlining process. This
    // function prunes out any variables from the latter category (since
    // they will be emitted as part of DWARF inlined_subroutine DIEs) and
    // then generates scopes for vars in the former category.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    	// whose dependencies are not pruned. It may be the case that the path from
    	// the unpruned root leads to a conflict, while the path from the pruned root
    	// prunes out the requirements that would lead to that conflict.
    	// So we need to track the two kinds of paths independently.
    	// They join back together at the roots of the graph: if a root r1 with pruned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    }
    
    const eof = -1
    
    // ss is the internal implementation of ScanState.
    type ss struct {
    	rs    io.RuneScanner // where to read input
    	buf   buffer         // token accumulator
    	count int            // runes consumed so far.
    	atEOF bool           // already read EOF
    	ssave
    }
    
    // ssave holds the parts of ss that need to be
    // saved and restored on recursive scans.
    type ssave struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. src/strings/strings.go

    	for i := 0; i < len(s); i++ {
    		r := s[i]
    		setBits |= r
    		isSpace := int(asciiSpace[r])
    		n += wasSpace & ^isSpace
    		wasSpace = isSpace
    	}
    
    	if setBits >= utf8.RuneSelf {
    		// Some runes in the input string are not ASCII.
    		return FieldsFunc(s, unicode.IsSpace)
    	}
    	// ASCII fast path
    	a := make([]string, n)
    	na := 0
    	fieldStart := 0
    	i := 0
    	// Skip spaces in the front of the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. src/fmt/scan_test.go

    			t.Errorf("#%d: %s %T not eof on trailing blanks: %s", i, test.format, test.v, err)
    		}
    	}
    }
    
    // TestUnreadRuneWithBufio verifies that, at least when using bufio, successive
    // calls to Fscan do not lose runes.
    func TestUnreadRuneWithBufio(t *testing.T) {
    	r := bufio.NewReader(strings.NewReader("123αb"))
    	var i int
    	var a string
    	n, err := Fscanf(r, "%d", &i)
    	if n != 1 || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    		if r1 != r2 {
    			t.Errorf("%s diff at %d: U+%04X U+%04X", m, i, r1, r2)
    		}
    	}
    	return false
    }
    
    func TestCaseConsistency(t *testing.T) {
    	// Make a string of all the runes.
    	numRunes := int(unicode.MaxRune + 1)
    	if testing.Short() {
    		numRunes = 1000
    	}
    	a := make([]rune, numRunes)
    	for i := range a {
    		a[i] = rune(i)
    	}
    	s := string(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	{"bug17d", "{{index .NonEmptyInterfacePtS 0}}", "a", tVal, true},
    	{"bug17e", "{{range .NonEmptyInterfacePtS}}-{{.}}-{{end}}", "-a--b-", tVal, true},
    
    	// More variadic function corner cases. Some runes would get evaluated
    	// as constant floats instead of ints. Issue 34483.
    	{"bug18a", "{{eq . '.'}}", "true", '.', true},
    	{"bug18b", "{{eq . 'e'}}", "true", 'e', true},
    	{"bug18c", "{{eq . 'P'}}", "true", 'P', true},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    	{"bug17d", "{{index .NonEmptyInterfacePtS 0}}", "a", tVal, true},
    	{"bug17e", "{{range .NonEmptyInterfacePtS}}-{{.}}-{{end}}", "-a--b-", tVal, true},
    
    	// More variadic function corner cases. Some runes would get evaluated
    	// as constant floats instead of ints. Issue 34483.
    	{"bug18a", "{{eq . '.'}}", "true", '.', true},
    	{"bug18b", "{{eq . 'e'}}", "true", 'e', true},
    	{"bug18c", "{{eq . 'P'}}", "true", 'P', true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
    
      let constructor = "tf_executor::CreateTFExecutorCheckControlDependenciesPass()";
    }
    
    def ExecutorGraphPruningPass : Pass<"tf-executor-graph-pruning", "mlir::func::FuncOp"> {
      let summary = "Prunes unreachable ops in a tf_executor.graph";
    
      let description = [{
        This pass removes ops from a `tf_executor.graph` that are not transitively, via
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // regardless of the whether the "all" pattern is a root.
    // (This is necessary to maintain the “import invariant” described in
    // https://golang.org/design/36460-lazy-module-loading.)
    //
    // Because "go mod vendor" prunes out the tests of vendored packages, the
    // behavior of the "all" pattern with -mod=vendor in Go 1.11–1.15 is the same
    // as the "all" pattern (regardless of the -mod flag) in 1.16+.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top