Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 345 for Ui (0.19 sec)

  1. samples/addons/extras/skywalking.yaml

    kind: Deployment
    metadata:
      name: skywalking-ui
      namespace: istio-system
      labels:
        app: skywalking-ui
    spec:
      selector:
        matchLabels:
          app: skywalking-ui
      template:
        metadata:
          labels:
            app: skywalking-ui
          annotations:
            sidecar.istio.io/inject: "false"
        spec:
          containers:
            - name: skywalking-ui
              image: apache/skywalking-ui:9.1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 21:40:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/options.go

    	return ui.r.ReadString('\n')
    }
    
    func (ui *stdUI) Print(args ...interface{}) {
    	ui.fprint(os.Stderr, args)
    }
    
    func (ui *stdUI) PrintErr(args ...interface{}) {
    	ui.fprint(os.Stderr, args)
    }
    
    func (ui *stdUI) IsTerminal() bool {
    	return false
    }
    
    func (ui *stdUI) WantBrowser() bool {
    	return true
    }
    
    func (ui *stdUI) SetAutoComplete(func(string) string) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 12:27:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. fastapi/openapi/docs.py

            Doc(
                """
                The URL to use to load the Swagger UI JavaScript.
    
                It is normally set to a CDN URL.
                """
            ),
        ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
        swagger_css_url: Annotated[
            str,
            Doc(
                """
                The URL to use to load the Swagger UI CSS.
    
                It is normally set to a CDN URL.
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	warnNoMatches(show == nil || hnm, "Show", ui)
    
    	sfm := prof.ShowFrom(showfrom)
    	warnNoMatches(showfrom == nil || sfm, "ShowFrom", ui)
    
    	tfm, tim := prof.FilterSamplesByTag(tagfocus, tagignore)
    	warnNoMatches(tagfocus == nil || tfm, "TagFocus", ui)
    	warnNoMatches(tagignore == nil || tim, "TagIgnore", ui)
    
    	tagshow, err := compileRegexOption("tagshow", cfg.TagShow, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    func greetings(p *profile.Profile, ui plugin.UI) {
    	numLabelUnits := identifyNumLabelUnits(p, ui)
    	ropt, err := reportOptions(p, numLabelUnits, currentConfig())
    	if err == nil {
    		rpt := report.New(p, ropt)
    		ui.Print(strings.Join(report.ProfileLabels(rpt), "\n"))
    		if rpt.Total() == 0 && len(p.SampleType) > 1 {
    			ui.Print(`No samples were found with the default sample value type.`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  6. istioctl/pkg/dashboard/dashboard.go

    	kiali.PersistentFlags().IntVar(&kialiPort, "ui-port", defaultKialiPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(kiali)
    
    	prom := promDashCmd(cliContext)
    	prom.PersistentFlags().IntVar(&promPort, "ui-port", defaultPrometheusPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(prom)
    
    	graf := grafanaDashCmd(cliContext)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. docs_src/custom_docs_ui/tutorial001.py

        return get_swagger_ui_html(
            openapi_url=app.openapi_url,
            title=app.title + " - Swagger UI",
            oauth2_redirect_url=app.swagger_ui_oauth2_redirect_url,
            swagger_js_url="https://unpkg.com/swagger-ui-dist@5/swagger-ui-bundle.js",
            swagger_css_url="https://unpkg.com/swagger-ui-dist@5/swagger-ui.css",
        )
    
    
    @app.get(app.swagger_ui_oauth2_redirect_url, include_in_schema=False)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    				o.UI.PrintErr("Saved profile in ", tempFile.Name())
    			}
    		}
    		if err != nil {
    			o.UI.PrintErr("Could not save profile: ", err)
    		}
    	}
    
    	if err := p.CheckValid(); err != nil {
    		return nil, err
    	}
    
    	return p, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            assert defaultArtifacts.collect { it.id.displayName }  == ['lib.jar (project :lib)', 'lib-util.jar', 'ui.jar (project :ui)', 'some-jar-1.0.jar (org:test:1.0)']
    
                            assert optionalFiles.collect { it.name } == ['lib.jar', 'lib-util.jar', 'ui.jar', 'some-jar-1.0.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/pprof/readlineui.go

    func init() {
    	newUI = newReadlineUI
    }
    
    // readlineUI implements driver.UI interface using the
    // golang.org/x/term package.
    // The upstream pprof command implements the same functionality
    // using the github.com/chzyer/readline package.
    type readlineUI struct {
    	term *term.Terminal
    }
    
    func newReadlineUI() driver.UI {
    	// disable readline UI in dumb terminal. (golang.org/issue/26254)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top