Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for bezant (1.22 sec)

  1. src/cmd/distpack/pack.go

    	reportHash(name)
    }
    
    // check panics if err is not nil. Otherwise it returns x.
    // It is only meant to be used in a function that has deferred
    // a function to recover appropriately from the panic.
    func check[T any](x T, err error) T {
    	check1(err)
    	return x
    }
    
    // check1 panics if err is not nil.
    // It is only meant to be used in a function that has deferred
    // a function to recover appropriately from the panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache.go

    	if isNoVerify {
    		file = wrapper.ReadSeeker
    	}
    	return c.put(id, file, !isNoVerify)
    }
    
    // PutNoVerify is like Put but disables the verify check
    // when GODEBUG=goverifycache=1 is set.
    // It is meant for data that is OK to cache but that we expect to vary slightly from run to run,
    // like test output containing times and the like.
    func PutNoVerify(c Cache, id ActionID, file io.ReadSeeker) (OutputID, int64, 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)
  3. src/cmd/trace/regions.go

    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    period.
    However, the "Count" column includes all regions, including those that only started
    or ended during the traced period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		// three from the unsigned total order. The == cases overlap.
    		// Note: there's a sixth "unordered" outcome for floating-point
    		// comparisons, but we don't use such a beast yet.
    		// These ops are for temporary use by rewrite rules. They
    		// cannot appear in the generated assembly.
    		{name: "FlagEQ"},     // equal
    		{name: "FlagLT_ULT"}, // signed < and unsigned <
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    	if fi, err := os.Stat(filepath.Dir(dst)); err == nil {
    		if fi.IsDir() && (fi.Mode()&fs.ModeSetgid) != 0 {
    			return sh.CopyFile(dst, src, perm, force)
    		}
    	}
    
    	// The perm argument is meant to be adjusted according to umask,
    	// but we don't know what the umask is.
    	// Create a dummy file to find out.
    	// This avoids build tags and works even on systems like Plan 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeset.go

    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    // only comparable types are meant; in all other cases comparable is false.
    type _TypeSet struct {
    	methods    []*Func  // all methods of the interface; sorted by unique ID
    	terms      termlist // type terms of the type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/search/search.go

    // their own code to $GOROOT instead of using $GOPATH, but we assume that
    // code will start with a domain name (dot in the first element).
    //
    // Note that this function is meant to evaluate whether a directory found in GOROOT
    // should be treated as part of the standard library. It should not be used to decide
    // that a directory found in GOPATH should be rejected: directories in GOPATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/modfile.go

    }
    
    type ModuleRetractedError struct {
    	Rationale []string
    }
    
    func (e *ModuleRetractedError) Error() string {
    	msg := "retracted by module author"
    	if len(e.Rationale) > 0 {
    		// This is meant to be a short error printed on a terminal, so just
    		// print the first rationale.
    		msg += ": " + ShortMessage(e.Rationale[0], "retracted by module author")
    	}
    	return msg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		// Constant flag value.
    		// Note: there's an "unordered" outcome for floating-point
    		// comparisons, but we don't use such a beast yet.
    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	if err != nil {
    		log.Fatalf("expr parse error on %q: %v", src, err)
    	}
    	return expr
    }
    
    // stmtf parses a Go statement generated from fmt.Sprintf. This function is only
    // meant for simple statements that don't have a custom Statement node declared
    // in this package, such as ast.ReturnStmt or ast.ExprStmt.
    func stmtf(format string, a ...interface{}) Statement {
    	src := fmt.Sprintf(format, a...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top