Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for recordLine (0.18 sec)

  1. src/cmd/go/internal/cache/cache.go

    		}
    		entry := filepath.Join(subdir, name)
    		info, err := os.Stat(entry)
    		if err == nil && info.ModTime().Before(cutoff) {
    			os.Remove(entry)
    		}
    	}
    }
    
    // putIndexEntry adds an entry to the cache recording that executing the action
    // with the given id produces an output with the given output id (hash) and size.
    func (c *DiskCache) putIndexEntry(id ActionID, out OutputID, size int64, allowVerify bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    	// Ensure that typ is always sanity-checked.
    	if check != nil {
    		check.needsCleanup(typ)
    	}
    	return typ
    }
    
    // newNamedInstance creates a new named instance for the given origin and type
    // arguments, recording pos as the position of its synthetic object (for error
    // reporting).
    //
    // If set, expanding is the named type instance currently being expanded, that
    // led to the creation of this instance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    		typ = (*Tuple)(nil)
    	case constant_:
    		typ = x.typ
    		val = x.val
    	default:
    		typ = x.typ
    	}
    	assert(x.expr != nil && typ != nil)
    
    	if isUntyped(typ) {
    		// delay type and value recording until we know the type
    		// or until the end of type checking
    		check.rememberUntyped(x.expr, false, x.mode, typ.(*Basic), val)
    	} else {
    		check.recordTypeAndValue(x.expr, x.mode, typ, val)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/go/types/named.go

    	// Ensure that typ is always sanity-checked.
    	if check != nil {
    		check.needsCleanup(typ)
    	}
    	return typ
    }
    
    // newNamedInstance creates a new named instance for the given origin and type
    // arguments, recording pos as the position of its synthetic object (for error
    // reporting).
    //
    // If set, expanding is the named type instance currently being expanded, that
    // led to the creation of this instance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    	// want the binary for is to run the test, and the test result is cached,
    	// then to avoid the link step, report the link as up-to-date.
    	// We avoid the nested build ID problem in the previous special case
    	// by recording the test results in the cache under the action ID half.
    	if len(a.triggers) == 1 && a.triggers[0].TryCache != nil && a.triggers[0].TryCache(b, a.triggers[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    var optimizedLibs = (!strings.Contains(gogcflags, "-N") && !strings.Contains(gogcflags, "-l"))
    
    // TestNexting go-builds a file, then uses a debugger (default delve, optionally gdb)
    // to next through the generated executable, recording each line landed at, and
    // then compares those lines with reference file(s).
    // Flag -u updates the reference file(s).
    // Flag -g changes the debugger to gdb (and uses gdb-specific reference files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/parser.go

    	obj := scope.Lookup(name)
    	if obj != nil && obj.Type() == nil {
    		p.errorf("%v has nil type", obj)
    	}
    
    	if p.tok == scanner.Ident && p.lit == "notinheap" {
    		p.next()
    		// The go/types package has no way of recording that
    		// this type is marked notinheap. Presumably no user
    		// of this package actually cares.
    	}
    
    	// type alias
    	if p.tok == '=' {
    		p.next()
    		p.aliases[nlist[len(nlist)-1].(int)] = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Enable the accumulation of {@link CacheStats} during the operation of the cache. Without this
       * {@link Cache#stats} will return zero for all statistics. Note that recording stats requires
       * bookkeeping to be performed with each operation, and thus imposes a performance penalty on
       * cache operation.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. tensorflow/c/eager/tape.h

        TF_RETURN_IF_ERROR(vspace_.CallBackwardFunction(
            op_type, backward_function.get(), unneeded_gradients, forwardprop_aids,
            absl::MakeSpan(grad)));
      }
    
      // Stop the tape from recording
      pop_backward_tape.release()();
    
      std::vector<int64_t> targets;
      std::vector<Gradient*> used_in_grads;
      // We may end up with slightly fewer elements than we reserve, but grad.size()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    	FakeP    = 1000000 + iota
    	TimerP   // contains timer unblocks
    	NetpollP // contains network unblocks
    	SyscallP // contains returns from syscalls
    	GCP      // contains GC state
    	ProfileP // contains recording of CPU profile samples
    )
    
    // Trace is the result of Parse.
    type Trace struct {
    	Version version.Version
    
    	// Events is the sorted list of Events in the trace.
    	Events Events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top