Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 652 for explode (0.1 sec)

  1. src/main/config/openapi/openapi-user.yaml

              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [name]
            - name: facet.field
              in: query
              description: Facet field name
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-base/src/test/groovy/org/gradle/caching/internal/origin/OriginMetadataFactoryTest.groovy

            def baos = new ByteArrayOutputStream()
            writer.execute(baos)
            when:
            def reader = factory.createReader()
            // doesn't explode
            reader.execute(new ByteArrayInputStream(baos.toByteArray()))
            and:
            origin.load(new ByteArrayInputStream(baos.toByteArray()))
            then:
            origin.identity == "identity"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 15:16:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                    @TaskAction
                    void explode() {
                        throw new Exception("I am the checked exception")
                    }
                }
    
                task explode(type: SomeTask) {
    
                }
            """
    
            expect:
            2.times {
                fails "explode"
                failure.assertHasCause "java.lang.Exception: I am the checked exception"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            when:
            def result = cache.get()
    
            then:
            result == "foo bar"
            1 * fileAccess.readFile(!null) >> { it[0].get() }
        }
    
        def "update does not explode when no existing value"() {
            when:
            cache.update({ value ->
                assert value == null
                return "bar"
            } as ObjectHolder.UpdateAction)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. fastapi/openapi/models.py

        cookie = "cookie"
    
    
    class Encoding(BaseModelWithConfig):
        contentType: Optional[str] = None
        headers: Optional[Dict[str, Union["Header", Reference]]] = None
        style: Optional[str] = None
        explode: Optional[bool] = None
        allowReserved: Optional[bool] = None
    
    
    class MediaType(BaseModelWithConfig):
        schema_: Optional[Union[Schema, Reference]] = Field(default=None, alias="schema")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/strings/strings.go

    	"internal/bytealg"
    	"internal/stringslite"
    	"unicode"
    	"unicode/utf8"
    )
    
    const maxInt = int(^uint(0) >> 1)
    
    // explode splits s into a slice of UTF-8 strings,
    // one string per Unicode character up to a maximum of n (n < 0 means no limit).
    // Invalid UTF-8 bytes are sliced individually.
    func explode(s string, n int) []string {
    	l := utf8.RuneCountInString(s)
    	if n < 0 || n > l {
    		n = l
    	}
    	a := make([]string, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/controllermanager.go

    func NewControllerDescriptors() map[string]*ControllerDescriptor {
    	controllers := map[string]*ControllerDescriptor{}
    	aliases := sets.NewString()
    
    	// All the controllers must fulfil common constraints, or else we will explode.
    	register := func(controllerDesc *ControllerDescriptor) {
    		if controllerDesc == nil {
    			panic("received nil controller for a registration")
    		}
    		name := controllerDesc.Name()
    		if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. The selected version of the module providing each package marked with
    //     either pkgInAll or pkgIsRoot is included as a root.
    //     Note that certain root patterns (such as '...') may explode the root set
    //     to contain every module that provides any package imported (or merely
    //     required) by any other module.
    //  2. Each root appears only once, at the selected version of its path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      fun postBodyRetransmittedAfterAuthorizationFail_HTTP_2() {
        platform.assumeHttp2Support()
        enableProtocol(Protocol.HTTP_2)
        postBodyRetransmittedAfterAuthorizationFail("abc")
      }
    
      /** Don't explode when resending an empty post. https://github.com/square/okhttp/issues/1131  */
      @Test
      fun postEmptyBodyRetransmittedAfterAuthorizationFail() {
        postBodyRetransmittedAfterAuthorizationFail("")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top