Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for WebService (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * redundancy for such URLs.
     *
     * Because they don't attempt canonical form, these classes are surprisingly difficult to use
     * securely. Suppose you're building a webservice that checks that incoming paths are prefixed
     * "/static/images/" before serving the corresponding assets from the filesystem.
     *
     * ```java
     * String attack = "http://example.com/static/images/../../../../../etc/passwd";
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top