Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 314 for mixer (0.04 sec)

  1. src/go/parser/testdata/tparams.go2

    	t[a,]
    	t[a, b]
    	t[a, b,]
    }
    type _ struct {
    	t [n, /* ERROR "unexpected comma; expecting ]" */ ]byte
    }
    type _ interface {
    	t[a]
    	t[a,]
    	m[ /* ERROR "method must have no type parameters" */ _ _, /* ERROR mixed */ _]()
    	t[a, b]
    	t[a, b,]
    }
    
    func _[] /* ERROR "empty type parameter list" */ ()
    func _[a, b ] /* ERROR "missing type constraint" */ ()
    func _[a t, b t, c] /* ERROR "missing type constraint" */ ()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishWarIntegTest.groovy

     * limitations under the License.
     */
    package org.gradle.api.publish.ivy
    
    class IvyPublishWarIntegTest extends AbstractIvyPublishIntegTest {
    
        void "can publish WAR only for mixed java and WAR project"() {
            given:
            file("settings.gradle") << "rootProject.name = 'publishTest' "
    
            and:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'war'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pilot/pkg/util/network/ip_test.go

    			expected: false,
    		},
    		{
    			name:     "ipv6 only",
    			addrs:    []string{"1111:2222::1", "::1", "2222:3333::1"},
    			expected: true,
    		},
    		{
    			name:     "mixed ipv4 and ipv6",
    			addrs:    []string{"1111:2222::1", "::1", "127.0.0.1", "2.2.2.2", "2222:3333::1"},
    			expected: false,
    		},
    		{
    			name:     "test for invalid ip address",
    			addrs:    []string{"invalidip"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testdata/tparams.go

    type t[a t, b t, c /* ERROR missing type constraint */ ] struct{}
    type t struct {
    	t [n]byte
    	t[a]
    	t[a, b]
    }
    type t interface {
    	t[a]
    	m /* ERROR method must have no type parameters */ [_ _, /* ERROR mixed */ _]()
    	t[a, b]
    }
    
    func f[ /* ERROR empty type parameter list */ ]()
    func f[a, b /* ERROR missing type constraint */ ]()
    func f[a t, b t, c /* ERROR missing type constraint */ ]()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/connection/BuildLogLevelMixInTest.groovy

    import org.gradle.api.logging.LogLevel
    import spock.lang.Specification
    
    class BuildLogLevelMixInTest extends Specification {
    
        final parameters = Mock(ProviderOperationParameters)
    
        def "knows build log level for mixed set of arguments (or not arguments)"() {
            when:
            parameters.getArguments() >> args
            parameters.getVerboseLogging() >> verbose
            def mixin = new BuildLogLevelMixIn(parameters)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/os/env_test.go

    	{"$home_1", "/usr/foo"},
    	{"${HOME}", "/usr/gopher"},
    	{"${H}OME", "(Value of H)OME"},
    	{"A$$$#$1$H$home_1*B", "APIDNARGSARGUMENT1(Value of H)/usr/foo*B"},
    	{"start$+middle$^end$", "start$+middle$^end$"},
    	{"mixed$|bag$$$", "mixed$|bagPID$"},
    	{"$", "$"},
    	{"$}", "$}"},
    	{"${", ""},  // invalid syntax; eat up the characters
    	{"${}", ""}, // invalid syntax; eat up the characters
    }
    
    func TestExpand(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_ambiguous_import.txt

    cmp go.mod go.mod.orig
    
    # Upgrading both modules simultaneously resolves the ambiguous upgrade.
    # Note that this command line mixes a module path (example.net/m)
    # and a package path (example.net/m/p) in the same command.
    go get example.net/m@v0.2.0 example.net/m/p@v1.0.0
    
    go list -m all
    stdout '^example.net/m v0.2.0 '
    stdout '^example.net/m/p v1.0.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalPhasedActionConnection.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.protocol.exceptions.InternalUnsupportedBuildArgumentException;
    
    /**
     * Mixed into a provider connection, to allow tooling models in different phases of the build to be
     * requested by the user.
     *
     * <p>DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

            matches("name", "name", "other")
        }
    
        def "selects item with matching prefix"() {
            expect:
            matches("na", "name")
            matches("na", "name", "other")
    
            and: // Mixed case
            matches("na", "Name")
            matches("NA", "name")
            matches("somena", "someName")
            matches("somena", "SomeName")
            matches("somena", "SomeName")
            matches("some na", "Some Name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

        assertEquals("plain", mediaType.subtype)
        assertNull(mediaType.charsetName())
        assertEquals("text/plain;", mediaType.toString())
      }
    
      @Test fun testParameter() {
        val mediaType = parse("multipart/mixed; boundary=\"abcd\"")
        assertEquals("abcd", mediaType.parameter("boundary"))
        assertEquals("abcd", mediaType.parameter("BOUNDARY"))
      }
    
      @Test fun testMultipleParameters() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top