Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for WebService (0.22 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. 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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