Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for WebService (0.24 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            assertHasExpectedContents(getClasspathFile(project:"webservice"), "webserviceClasspath.xml")
            assertHasExpectedContents(getProjectFile(project:"webservice"), "webserviceProject.xml")
            assertHasExpectedContents(getComponentFile(project:"webservice"), "webserviceWtpComponent.xml")
            assertHasExpectedContents(getFacetFile(project:"webservice"), "webserviceWtpFacet.xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper.go

    	wrapped.ServeHTTP(resp.ResponseWriter, req.Request)
    }
    
    func (wrapped *WrappedHandler) GenerateWebService(prefix string, returnType interface{}) *restful.WebService {
    	mediaTypes, _ := negotiation.MediaTypesForSerializer(wrapped.s)
    	ws := new(restful.WebService)
    	ws.Path(prefix)
    	ws.Doc("get available API versions")
    	ws.Route(ws.GET("/").To(wrapped.restfulHandle).
    		Doc("get available API versions").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    .DownloadPlugin.java
    ----
    include::{snippetsPath}/plugins/buildService/groovy/buildSrc/src/main/java/DownloadPlugin.java[]
    ----
    ====
    
    The plugin registers the service and receives a `Provider<WebService>` back.
    This provider can be connected to task properties to pass the service to the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		s.Handler.GoRestfulContainer.Add(wrapped.GenerateWebService("/api", metav1.APIVersions{}))
    	} else {
    		s.Handler.GoRestfulContainer.Add(legacyRootAPIHandler.WebService())
    	}
    
    	return nil
    }
    
    // InstallAPIGroups exposes given api groups in the API.
    // The <apiGroupInfos> passed into this function shouldn't be used elsewhere as the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/config.go

    			s.Handler.GoRestfulContainer.Add(wrapped.GenerateWebService("/apis", metav1.APIGroupList{}))
    		} else {
    			s.Handler.GoRestfulContainer.Add(s.DiscoveryGroupManager.WebService())
    		}
    	}
    	if c.FlowControl != nil {
    		c.FlowControl.Install(s.Handler.NonGoRestfulMux)
    	}
    }
    
    func NewRequestInfoResolver(c *Config) *apirequest.RequestInfoFactory {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top