Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for TestResources (0.31 sec)

  1. cluster/gce/gci/audit_policy_test.go

    	}
    
    	at.testResources(none, kubeproxy, "watch", endpoints, sysEndpoints, services, serviceStatus)
    	at.testResources(request, kubeproxy, "watch", nodes, pods)
    
    	at.testResources(none, ingress, "get", sysConfigmaps)
    	at.testResources(metadata, ingress, "get", configmaps)
    
    	at.testResources(none, kubelet, node, "get", nodes, nodeStatus)
    	at.testResources(metadata, kubelet, node, "get", sysConfigmaps, secrets)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  2. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    			resources:    testResources([]resourceapi.NamedResourcesInstance{{Name: badName}}),
    		},
    		"duplicate-name": {
    			wantFailures: field.ErrorList{field.Duplicate(field.NewPath("instances").Index(1).Child("name"), goodName)},
    			resources:    testResources([]resourceapi.NamedResourcesInstance{{Name: goodName}, {Name: goodName}}),
    		},
    		"quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/cluster_test.go

    		node            *v1.Node
    		staticPods      []testresources.FakeStaticPod
    		configMaps      []testresources.FakeConfigMap
    		newControlPlane bool
    		expectedError   bool
    	}{
    		{
    			name:          "invalid - No kubeadm-config ConfigMap",
    			expectedError: true,
    		},
    		{
    			name: "invalid - No ClusterConfiguration in kubeadm-config ConfigMap",
    			configMaps: []testresources.FakeConfigMap{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/etcd/etcd_test.go

    		name              string
    		pods              []testresources.FakeStaticPod
    		expectedEndpoints []string
    		expectedErr       bool
    	}{
    		{
    			name:              "no pod annotations",
    			expectedEndpoints: []string{},
    			expectedErr:       true,
    		},
    		{
    			name: "ipv4 endpoint in pod annotation; port is preserved",
    			pods: []testresources.FakeStaticPod{
    				{
    					Component: constants.Etcd,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            me.add(createMojoExecution("resources", "default-resources", PROCESS_RESOURCES));
            me.add(createMojoExecution("compile", "default-compile", COMPILE));
            me.add(createMojoExecution("testResources", "default-testResources", PROCESS_TEST_RESOURCES));
            me.add(createMojoExecution("testCompile", "default-testCompile", TEST_COMPILE));
            me.add(createMojoExecution("test", "default-test", TEST));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.junit.Rule
    import spock.lang.Issue
    
    class ExecIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

    import org.junit.Rule
    import spock.lang.Issue
    
    import java.nio.file.Paths
    
    class JavadocIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        TestResources testResources = new TestResources(temporaryFolder)
    
        @Issue("GRADLE-1563")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        // JDK 9 requires an @Deprecated annotation that breaks this same test on Java 7 on Windows.
        def handlesTagsAndTaglets() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationSpec
    import org.gradle.plugins.ide.fixtures.IdeaFixtures
    import org.junit.Rule
    
    class IdeaJavaLanguageSettingsIntegrationTest extends AbstractIdeIntegrationSpec {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    import spock.lang.Issue
    
    class IdeaModuleIntegrationTest extends AbstractIdeIntegrationTest {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    
    class IdeaMultiModuleIntegrationTest extends AbstractIdeIntegrationTest {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top