Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for WebService (0.14 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/build.gradle

    subprojects {
        repositories {
            mavenCentral()
        }
    
        group = 'org.gradle'
        version = '1.0'
    }
    
    configure(subprojects.findAll{ it.path in [ ':api', ':common', ':webAppJava6', ':webAppWithVars', ':webservice' ] }){
        apply plugin: 'eclipse-wtp'
    }
    
    allprojects {
        afterEvaluate { p ->
            configure(p) {
                if (p.hasProperty('eclipseClasspath')) {
                    eclipse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/routes/profiling.go

    import (
    	"net/http"
    	"net/http/pprof"
    
    	"k8s.io/apiserver/pkg/server/mux"
    )
    
    // Profiling adds handlers for pprof under /debug/pprof.
    type Profiling struct{}
    
    // Install adds the Profiling webservice to the given mux.
    func (d Profiling) Install(c *mux.PathRecorderMux) {
    	c.UnlistedHandleFunc("/debug/pprof", redirectTo("/debug/pprof/"))
    	c.UnlistedHandlePrefix("/debug/pprof/", http.HandlerFunc(pprof.Index))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 06 11:35:01 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/handler.go

    }
    
    // CreateHandlers creates the REST handlers for the stats.
    func CreateHandlers(rootPath string, provider Provider, summaryProvider SummaryProvider) *restful.WebService {
    	h := &handler{provider, summaryProvider}
    
    	ws := &restful.WebService{}
    	ws.Path(rootPath).
    		Produces(restful.MIME_JSON)
    
    	endpoints := []struct {
    		path    string
    		handler restful.RouteFunction
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. pkg/routes/logs.go

    func (l Logs) Install(c *restful.Container) {
    	// use restful: ws.Route(ws.GET("/logs/{logpath:*}").To(fileHandler))
    	// See github.com/emicklei/go-restful/blob/master/examples/static/restful-serve-static.go
    	ws := new(restful.WebService)
    	ws.Path("/logs")
    	ws.Doc("get log files")
    	ws.Route(ws.GET("/{logpath:*}").To(logFileHandler).Param(ws.PathParameter("logpath", "path to the log").DataType("string")))
    	ws.Route(ws.GET("/").To(logFileListHandler))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 16:25:48 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishChangingUrlIntegTest.groovy

                    @TaskAction
                    void initializeRepository() {
                        // Imagine this is hitting some webservice to calculate a new URL
                        repositoryRegistry.get().url = "${repo2.uri}"
                    }
                }
                task initializeRepository(type: InitializeRepository) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top