Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 314 for mixer (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def classesDir = tmpDir.file("classes")
        def srcDir = tmpDir.file("source")
    
        def "mixes GroovyObject into JavaPluginConvention"() {
            given:
            def className = "org.gradle.api.plugins.JavaPluginConvention"
    
            def original = compileJavaToDir(className, """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. hack/verify-file-sizes.sh

                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
                w/|w/lf|w/crlf|w/mixed|w/none)
                    # Other files are okay.
                    ;;
                *)
                    echo "unexpected 'git ls-files --eol' output for $file: $tree"
                    ;;
            esac
        done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/plugin/authn/util_test.go

    				},
    			},
    			want: []string{"cluster.local", "alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    		},
    		{
    			name: "Mixed duplicated trust domains in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain: "cluster.local",
    				TrustDomainAliases: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    * If we would have used `Closure`, we must instead use `Action<T>`, `Spec<T>`, `Callable<T>`, or `Transformer<OUT, IN>`.
    * We need to ensure all APIs that are exposed in the Groovy DSL go through runtime decoration.
    Runtime decoration mixes in methods that use Groovy Closures to maintain consistent behavior in Groovy DSL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 10 20:38:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            state.restoreForCurrentThread() // Revert call at <1>, restore to "enabled" state
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `disable and restore calls can be mixed non-trivially`() {
            val state = InputTrackingState()
            state.disableForCurrentThread() // <1>
            state.disableForCurrentThread() // <2>
            state.restoreForCurrentThread() // Revert <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    import org.apache.maven.artifact.versioning.VersionRange;
    
    /**
     * Maven Artifact interface. Notice that it mixes artifact definition concepts (groupId, artifactId, version)
     * with dependency information (version range, scope).
     */
    public interface Artifact extends Comparable<Artifact> {
    
        String RELEASE_VERSION = "RELEASE";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 09 17:47:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            events.statusLogged("1 test completed, 1 skipped")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} skipped")
            }
        }
    
        def "captures mixed test progress logging events" () {
            withGoodTestClasses(5)
            withFailingTestClasses(3)
            withSkippedTestClasses(2)
    
            when:
            fails("test")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalInvalidatableVirtualFileSystemConnection.java

     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.GradleConnectionException;
    import org.gradle.tooling.UnsupportedVersionException;
    
    import java.util.List;
    
    /**
     * Mixed into a provider connection, to allow notifying the daemon about changed paths.
     *
     * <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.8K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_aix_ppc64.S

     * Called from standard ppc64 C ABI, where r2, r14-r31, f14-f31 are
     * callee-save, so they must be saved explicitly.
     * AIX has a special assembly syntax and keywords that can be mixed with
     * Linux assembly.
     */
      .toc
      .csect .text[PR]
      .globl crosscall_ppc64
      .globl .crosscall_ppc64
      .csect crosscall_ppc64[DS]
    crosscall_ppc64:
      .llong .crosscall_ppc64, TOC[tc0], 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name_test.go

    			Name:        "foo.bar.baz",
    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    		"valid,prefix": {
    			Name:        "foo.bar.baz",
    			Prefix:      true,
    			ExpectedMsg: "",
    		},
    
    		// Make sure mixed case, non DNS subdomain characters are tolerated
    		"valid complex": {
    			Name:        "sha256:ABCDEF012345@ABCDEF012345",
    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    		// Make sure non-ascii characters are tolerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:49:29 UTC 2017
    - 3.8K bytes
    - Viewed (0)
Back to top