Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for Display (0.22 sec)

  1. samples/bookinfo/src/productpage/productpage.py

            if val is not None:
                headers[ihdr] = val
    
        return headers
    
    
    # The UI:
    @app.route('/')
    @app.route('/index.html')
    def index():
        """ Display productpage with normal user and test user buttons"""
        global productpage
    
        table = json2html.convert(json=json.dumps(productpage),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. internal/logger/logger.go

    var matchingFuncNames = [...]string{
    	"http.HandlerFunc.ServeHTTP",
    	"cmd.serverMain",
    	// add more here ..
    }
    
    // quietFlag: Hide startup messages if enabled
    // jsonFlag: Display in JSON format, if enabled
    var (
    	quietFlag, jsonFlag, anonFlag bool
    	// Custom function to format error
    	errorFmtFunc func(string, error, bool) string
    )
    
    // EnableQuiet - turns quiet option on.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/trace/regions.go

    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    function reloadTable(key, value) {
    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/go/internal/work/buildid.go

    				oldBuildID := a.buildID
    				a.buildID = id[1] + buildIDSeparator + id[2]
    				linkID := buildid.HashToString(b.linkActionID(a.triggers[0]))
    				if id[0] == linkID {
    					// Best effort attempt to display output from the compile and link steps.
    					// If it doesn't work, it doesn't work: reusing the cached binary is more
    					// important than reprinting diagnostic information.
    					if printOutput {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof.go

    // Pprof's -inuse_space, -inuse_objects, -alloc_space, and -alloc_objects
    // flags select which to display, defaulting to -inuse_space (live objects,
    // scaled by size).
    //
    // # Allocs profile
    //
    // The allocs profile is the same as the heap profile but changes the default
    // pprof display to -alloc_space, the total number of bytes allocated since
    // the program began (including garbage-collected bytes).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        hereby grants You a world-wide, royalty-free, non-exclusive license:
    
        (a) under intellectual property rights (other than patent or
        trademark) Licensable by Initial Developer, to use, reproduce,
        modify, display, perform, sublicense and distribute the Original
        Software (or portions thereof), with or without Modifications,
        and/or as part of a Larger Work; and
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. istioctl/pkg/precheck/precheck.go

    	cmd.PersistentFlags().BoolVar(&skipControlPlane, "skip-controlplane", false, "skip checking the control plane")
    	cmd.PersistentFlags().Var(&outputThreshold, "output-threshold",
    		fmt.Sprintf("The severity level of precheck at which to display messages. Valid values: %v", diag.GetAllLevelStrings()))
    	cmd.PersistentFlags().StringVarP(&msgOutputFormat, "output", "o", formatting.LogFormat,
    		fmt.Sprintf("Output format: one of %v", formatting.MsgOutputFormatKeys))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    2. GRANT OF RIGHTS
    
      a) Subject to the terms of this Agreement, each Contributor hereby
      grants Recipient a non-exclusive, worldwide, royalty-free copyright
      license to reproduce, prepare Derivative Works of, publicly display,
      publicly perform, Distribute and sublicense the Contribution of such
      Contributor, if any, and such Derivative Works.
    
      b) Subject to the terms of this Agreement, each Contributor hereby
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				// We could tag the instructions from the first call with
    				// F1 and instructions from the second call with F2. But
    				// that leads to a somewhat confusing display. So for now,
    				// we stick with just the inner-most location (i.e., H).
    				// In the future we will consider changing the display to
    				// make caller info more visible.
    				index := 0 // Inner-most frame
    				x.file = frames[index].File
    				x.line = frames[index].Line
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    	rewriteRule = flag.String("r", "", "rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')")
    	simplifyAST = flag.Bool("s", false, "simplify code")
    	doDiff      = flag.Bool("d", false, "display diffs instead of rewriting files")
    	allErrors   = flag.Bool("e", false, "report all errors (not just the first 10 on different lines)")
    
    	// debugging
    	cpuprofile = flag.String("cpuprofile", "", "write cpu profile to this file")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top