Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for WebService (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/fake.go

    	f.lock.Lock()
    	defer f.lock.Unlock()
    
    	f.Actions = append(f.Actions, recorderResourceManagerAction{
    		Type:  "SetGroups",
    		Value: values,
    	})
    }
    func (f *recorderResourceManager) WebService() *restful.WebService {
    	panic("unimplemented")
    }
    
    func (f *recorderResourceManager) ServeHTTP(http.ResponseWriter, *http.Request) {
    	panic("unimplemented")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    type containerInterface interface {
    	Add(service *restful.WebService) *restful.Container
    	Handle(path string, handler http.Handler)
    	Filter(filter restful.FilterFunction)
    	ServeHTTP(w http.ResponseWriter, r *http.Request)
    	RegisteredWebServices() []*restful.WebService
    
    	// RegisteredHandlePaths returns the paths of handlers registered directly with the container (non-web-services)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    }
    
    // builder contains validation schema and basic naming information for a CRD in
    // one version. The builder works to build a WebService that kube-openapi can
    // consume.
    type builder struct {
    	schema     *spec.Schema
    	listSchema *spec.Schema
    	ws         *restful.WebService
    
    	group    string
    	version  string
    	kind     string
    	listKind string
    	plural   string
    
    	namespaced bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    	}
    	return apiResources, resourceInfos, ws, errors
    }
    
    // newWebService creates a new restful webservice with the api installer's prefix and version.
    func (a *APIInstaller) newWebService() *restful.WebService {
    	ws := new(restful.WebService)
    	ws.Path(a.prefix)
    	// a.prefix contains "prefix/group/version"
    	ws.Doc("API at " + a.prefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            assertHasExpectedContents('root.ipr')
            assertHasExpectedContents('root.iws')
            assertHasExpectedContents('root.iml')
            assertHasExpectedContents('api/api.iml')
            assertHasExpectedContents('webservice/webservice.iml')
    
            executer.withTasks('cleanIdea').run()
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void worksWithAnEmptyProject() {
            executer.withTasks('idea').run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top