Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,807 for unserved (0.37 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

        for (const int itensor : operation.tensors) {
          // insertion will only happen for the first use.
          const auto [iter, inserted] = source_uses.emplace(
              itensor,
              TensorUse{/*first_use=*/ioperation, /*last_use=*/ioperation});
          if (!inserted) {
            // Otherwise, update last_use.
            iter->second.last_use = ioperation;
          }
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package counter
    
    // The implementation of this package and tests are located in
    // internal/counter, which can be shared with the upload package.
    // TODO(hyangah): use of type aliases prevents nice documentation
    // rendering in go doc or pkgsite. Fix this either by avoiding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/base/base.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package base
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"runtime/metrics"
    )
    
    var atExitFuncs []func()
    
    func AtExit(f func()) {
    	atExitFuncs = append(atExitFuncs, f)
    }
    
    func Exit(code int) {
    	for i := len(atExitFuncs) - 1; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/go/types/selection.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/selection.go
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements Selections.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // SelectionKind describes the kind of a selector expression x.f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/trim.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    import "cmd/internal/src"
    
    // trim removes blocks with no code in them.
    // These blocks were inserted to remove critical edges.
    func trim(f *Func) {
    	n := 0
    	for _, b := range f.Blocks {
    		if !trimmableBlock(b) {
    			f.Blocks[n] = b
    			n++
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	ssSuccess ssState = iota
    	// Indicates a rune starts a new segment and should not be added.
    	ssStarter
    	// Indicates a rune caused a segment overflow and a CGJ should be inserted.
    	ssOverflow
    )
    
    // streamSafe implements the policy of when a CGJ should be inserted.
    type streamSafe uint8
    
    // first inserts the first rune of a segment. It is a faster version of next if
    // it is known p represents the first rune in a segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/go/parser/resolver_test.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/scanner"
    	"go/token"
    	"os"
    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    // TestResolution checks that identifiers are resolved to the declarations
    // annotated in the source, by comparing the positions of the resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. src/os/env_test.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os_test
    
    import (
    	. "os"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    // testGetenv gives us a controlled set of variables for testing Expand.
    func testGetenv(s string) string {
    	switch s {
    	case "*":
    		return "all the args"
    	case "#":
    		return "NARGS"
    	case "$":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/apis.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cfile
    
    import (
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/rtcov"
    	"io"
    	"sync/atomic"
    	"unsafe"
    )
    
    // WriteMetaDir implements [runtime/coverage.WriteMetaDir].
    func WriteMetaDir(dir string) error {
    	if !finalHashComputed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/net/url/url.go

    			return false
    		}
    	}
    
    	switch c {
    	case '-', '_', '.', '~': // §2.3 Unreserved characters (mark)
    		return false
    
    	case '$', '&', '+', ',', '/', ':', ';', '=', '?', '@': // §2.2 Reserved characters (reserved)
    		// Different sections of the URL allow a few of
    		// the reserved characters to appear unescaped.
    		switch mode {
    		case encodePath: // §3.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top