Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WebService (0.1 sec)

  1. 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)
  2. 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