Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,742 for Class2 (0.1 sec)

  1. pkg/volume/util/storageclass_test.go

    			expect:  nil,
    		},
    
    		{
    			name:    "one default storage class",
    			classes: []*storagev1.StorageClass{sc1, sc2, sc3},
    			expect:  sc3,
    		},
    
    		{
    			name:    "two default storage class with different creation timestamp",
    			classes: []*storagev1.StorageClass{sc3, sc4},
    			expect:  sc4,
    		},
    
    		{
    			name:    "two default storage class with same creation timestamp",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 14:18:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/HierarchicalClassLoaderStructureSerializerTest.groovy

            then:
            decodedClassloaderStructure == classLoaderStructure
        }
    
        def filteringClassloaderSpec() {
            def classNames = [ 'allowed.Class1', 'allowed.Class2' ]
            def disallowedClassNames = [ 'disallowed.Class1', 'disallowed.Class2' ]
            def packagePrefixes = [ 'allowed.pkgprefix1.', 'allowed.pkgprefix2' ]
            def disallowedPackagePrefixes = [ 'disallowed.pkgprefix1.', 'disallowed.pkgprefix2.' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

                  ops << "withId 2"
                }
    
                def class1 = ${pluginBuilder.packageName}.TestPlugin
                def class2 = ${pluginBuilder2.packageName}.TestPlugin2
    
                plugins.withType(class1) {
                  ops << "withType 1"
                }
    
                plugins.withType(class2) {
                  ops << "withType 2"
                }
    
                apply plugin: '$PLUGIN_ID'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

        }
    
        @Issue("GRADLE-3492")
        def "can exclude code"() {
            badCode()
            buildFile << """
                codenarcMain {
                    exclude '**/class1*'
                    exclude '**/Class2*'
                }
                codenarcTest {
                    exclude '**/TestClass1*'
                    exclude '**/testclass2*'
                }
            """.stripIndent()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcGroovyVersionIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':codenarcTest'.")
            failure.assertThatCause(startsWith("CodeNarc rule violations were found. See the report at:"))
            !report("main").text.contains("Class2")
            report("test").text.contains("testclass2")
    
            where:
            groovyVersion        | codenarcVersion
            latestGroovy3Version | CodeNarcPlugin.STABLE_VERSION
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

    }
    '''
    
            file('src/org/gradle/a/ClassA.java') << 'package org.gradle.a; public class ClassA { }'
            file('src/org/gradle/b/ClassB.java') << 'package org.gradle.b; public class ClassB { private org.gradle.a.ClassA field; }'
    
            executer.withTasks('clean', 'assemble').run()
    
            file('a/build/classes/java/main').assertHasDescendants(
                    'org/gradle/a/ClassA.class'
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/AntWorkerMemoryLeakIntegrationTest.groovy

    import spock.lang.Issue
    
    class AntWorkerMemoryLeakIntegrationTest extends AbstractIntegrationSpec {
        public static final String LOCAL_GROOVY = 'localGroovy()'
    
        private void goodCode(String groovyVersion, TestFile root = testDirectory) {
            root.file("src/main/java/org/gradle/Class0.java") << "package org.gradle; public class Class0 { }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                    expectGetMetadata()
                    expectGetArtifact(classifier: 'classy')
                }
            }
            succeeds "checkDep"
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:foo:1.0") {
                        module("org:bar:1.0") {
                            artifact(classifier: 'classy')
                        }
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/deployment/custom-class.yaml

    Ben Leggett <******@****.***> 1714764582 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

            m1.getArtifact(type: '', ext: '', classifier: 'classy').expectGet()
    
            run 'show'
    
            then:
            outputContains("files: [test-1.0, test-1.0, test-1.0-classy]")
            outputContains("display-names: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
            outputContains("ids: [test-1.0 (org:test:1.0), test-1.0 (org:test:1.0), test-1.0-classy (org:test:1.0)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top