Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,314 for explode (0.42 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. src/net/conn_test.go

    // constraint.
    
    package net
    
    import (
    	"testing"
    	"time"
    )
    
    // someTimeout is used just to test that net.Conn implementations
    // don't explode when their SetFooDeadline methods are called.
    // It isn't actually used for testing timeouts.
    const someTimeout = 1 * time.Hour
    
    func TestConnAndListener(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/paramdoc.mdo

              <name>cliOptions</name>
              <description>The command-line switches used to change the value of this expression.</description>
              <type>Properties</type>
              <association xml.mapStyle="explode">
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <version>1.0.0</version>
              <name>apiMethods</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Aug 21 15:04:07 UTC 2009
    - 5.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/encoding/gob/type_test.go

    	C string
    	D []byte
    	E *float64    // will become float64
    	F ****float64 // will become float64
    	G *Bar
    	H *Bar // should not interpolate the definition of Bar again
    	I *Foo // will not explode
    }
    
    func TestStructType(t *testing.T) {
    	sstruct := getTypeUnlocked("Foo", reflect.TypeFor[Foo]())
    	str := sstruct.string()
    	// If we can print it correctly, we built it correctly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

            assert contribComponent.deployName == 'cool-contrib'
        }
    
        @Test
        @Issue("GRADLE-1881")
        @ToBeFixedForConfigurationCache
        void "does not explode if dependent project does not have eclipse plugin"() {
            //given
            createDirs("impl", "contrib")
            def settings = file('settings.gradle')
            settings << "include 'impl', 'contrib'"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top