Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Dhiman (0.42 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    		// The human-readable path is in reverse order, outermost to innermost.
    		fmt.Fprint(&buf, path[n-i-1])
    	}
    	return buf.String()
    }
    
    func lockPathRhs(pass *analysis.Pass, x ast.Expr) typePath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    type cond struct {
    	mask   uint64
    	bits   uint64
    	result bool
    }
    
    // Verbose reports whether the reports will be shown to users
    // and need to include a human-readable change description.
    // If not, the target can print just the Marker on a line by itself
    // and perhaps save some computation.
    func (m *Matcher) Verbose() bool {
    	return m.verbose
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    							if p.Flags == elf.PF_R {
    								foundRO = true
    							}
    						}
    					}
    					if !foundRO {
    						// Things went off the rails. Write out some
    						// useful information for a human looking at the
    						// test failure.
    						t.Logf("test %s: %q section not in readonly segment",
    							wsro.Name, test.name)
    						t.Logf("section %s location: st=0x%x en=0x%x\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. doc/asm.html

    There may be one or two arguments to the directives.
    If there are two, the first is a bit mask of flags,
    which can be written as numeric expressions, added or or-ed together,
    or can be set symbolically for easier absorption by a human.
    Their values, defined in the standard <code>#include</code>  file <code>textflag.h</code>, are:
    </p>
    
    <ul>
    <li>
    <code>NOPROF</code> = 1
    <br>
    (For <code>TEXT</code> items.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // to obtain the original object.
    // The name does not include the package itself.
    type Path string
    
    // Encoding
    //
    // An object path is a textual and (with training) human-readable encoding
    // of a sequence of destructuring operators, starting from a types.Package.
    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/covdata/dump.go

    	case debugDumpMode:
    		fmt.Fprintf(os.Stderr, "  go tool covdata debugdump [flags] -i=dir1,dir2\n\n")
    		fmt.Fprintf(os.Stderr, "  \treads coverage data from dir1+dir2 and dumps\n")
    		fmt.Fprintf(os.Stderr, "  \tcontents in human-readable form to stdout, for\n")
    		fmt.Fprintf(os.Stderr, "  \tdebugging purposes.\n")
    	default:
    		panic("unexpected")
    	}
    	Exit(2)
    }
    
    // Setup is called once at program startup time to vet flag values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/func.go

    // prepended.
    //
    // This differs from the compiler's internal convention where local functions
    // lack a package. This is primarily useful when the ultimate consumer of this
    // is a human looking at message.
    func PkgFuncName(f *Func) string {
    	if f == nil || f.Nname == nil {
    		return "<nil>"
    	}
    	s := f.Sym()
    	pkg := s.Pkg
    
    	return pkg.Path + "." + s.Name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/scoring.go

    	// for most cases.
    	return maxBudget
    }
    
    var allCallSites CallSiteTab
    
    // DumpInlCallSiteScores is invoked by the inliner if the debug flag
    // "-d=dumpinlcallsitescores" is set; it dumps out a human-readable
    // summary of all (potentially) inlinable callsites in the package,
    // along with info on call site scoring and the adjustments made to a
    // given score. Here profile is the PGO profile in use (may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	}
    
    	return tparams2, check.subst(pos, typ, renameMap, nil, check.context())
    }
    
    // typeParamsString produces a string containing all the type parameter names
    // in list suitable for human consumption.
    func typeParamsString(list []*TypeParam) string {
    	// common cases
    	n := len(list)
    	switch n {
    	case 0:
    		return ""
    	case 1:
    		return list[0].obj.name
    	case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/object.go

    	Type() Type      // object type
    	Exported() bool  // reports whether the name starts with a capital letter
    	Id() string      // object name if exported, qualified name if not exported (see func Id)
    
    	// String returns a human-readable string of the object.
    	String() string
    
    	// order reflects a package-level object's source order: if object
    	// a is before object b in the source, then a.order() < b.order().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top