Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for testlink (0.13 sec)

  1. pkg/registry/policy/poddisruptionbudget/storage/storage_test.go

    	}
    }
    
    func TestGet(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestGet(validNewPodDisruptionBudget())
    }
    
    func TestList(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. pkg/registry/resource/podschedulingcontext/storage/storage_test.go

    }
    
    func TestList(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestList(validNewPodSchedulingContexts("foo", metav1.NamespaceDefault))
    }
    
    func TestWatch(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/projection/ManagedModelProjection.java

                        // TODO we are relying on the registration having established these links, we should be checking
                        MutableModelNode propertyNode = modelNode.getLink(propertyName);
                        propertyNode.ensureUsable();
    
                        ModelView<? extends T> modelView;
                        if (writable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. pkg/registry/autoscaling/horizontalpodautoscaler/storage/storage_test.go

    	test.TestGet(validNewHorizontalPodAutoscaler("foo"))
    }
    
    func TestList(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestList(validNewHorizontalPodAutoscaler("foo"))
    }
    
    func TestWatch(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. native-image-tests/src/main/kotlin/okhttp3/GenerateClassList.kt

    /**
     * Run periodically to refresh the known set of working tests.
     *
     * TODO use filtering to allow skipping acceptable problem tests
     */
    fun main() {
      val knownTestFile = File("native-image-tests/src/main/resources/testlist.txt")
      val testSelector = DiscoverySelectors.selectPackage("okhttp3")
      val testClasses =
        findTests(listOf(testSelector))
          .filter { it.isContainer }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            }, receivingFileLockContentionHandler)
            receivingSocket = receivingFileLockContentionHandler.communicator.socket
            receivingLock = fileLockManager.lock(file("locks/testlock"), DefaultLockOptions.mode(FileLockManager.LockMode.Exclusive), "testlock", "test holding lock", whenContended)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    To prevent the import of multiple sources, some methods will throw an exception when called more than once.
    
    A simple example could be the following, which triggers the error when building a version catalog:
    ```kotlin
    create("testLibs") {
        from(files("gradle/a.versions.toml"))
        from(files("gradle/b.versions.toml"))
    }
    ```
    
    When this happens, make sure that there is only a single import invocation per version catalog.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.base.TestingExtension.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pkg/registry/storage/volumeattachment/storage/storage_test.go

    	test.TestGet(validNewVolumeAttachment("foo"))
    }
    
    func TestList(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	test.TestList(validNewVolumeAttachment("foo"))
    }
    
    func TestWatch(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.2K bytes
    - Viewed (1)
  10. pkg/registry/admissionregistration/validatingadmissionpolicybinding/storage/storage_test.go

    			)
    		})
    	}
    }
    
    func TestGet(t *testing.T) {
    	for _, b := range validPolicyBindings() {
    		t.Run(b.Name, func(t *testing.T) {
    			storage, server := newInsecureStorage(t)
    			defer server.Terminate(t)
    			defer storage.Store.DestroyFunc()
    
    			test := genericregistrytest.New(t, storage.Store).ClusterScope()
    			test.TestGet(b)
    		})
    	}
    }
    
    func TestList(t *testing.T) {
    	for _, b := range validPolicyBindings() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top