Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for deleteSV (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/GradleUserHomeCleanupServices.java

    public class GradleUserHomeCleanupServices implements ServiceRegistrationProvider {
    
        public void configure(
            ServiceRegistration registration,
            GlobalScopedCacheBuilderFactory cacheBuilderFactory,
            Deleter deleter,
            GradleUserHomeDirProvider gradleUserHomeDirProvider,
            BuildOperationRunner buildOperationRunner,
            CacheConfigurationsInternal cacheConfigurations,
            ListenerManager listenerManager,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. api/discovery/apis__admissionregistration.k8s.io__v1.json

          "name": "mutatingwebhookconfigurations",
          "namespaced": false,
          "singularName": "mutatingwebhookconfiguration",
          "storageVersionHash": "Sqi0GUgDaX0=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

    /**
     * <p>
     * Wraps individual MojoExecutions, containing information about completion status and scheduling.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public class ExecutionPlanItem {
        private final MojoExecution mojoExecution;
    
        public ExecutionPlanItem(MojoExecution mojoExecution) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/concurrent/hashtriemap_test.go

    func expectDeleted[K, V comparable](t *testing.T, key K, old V) func(deleted bool) {
    	t.Helper()
    	return func(deleted bool) {
    		t.Helper()
    
    		if !deleted {
    			t.Errorf("expected key %v with value %v to be in map and deleted", key, old)
    		}
    	}
    }
    
    func expectNotDeleted[K, V comparable](t *testing.T, key K, old V) func(deleted bool) {
    	t.Helper()
    	return func(deleted bool) {
    		t.Helper()
    
    		if deleted {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/caching/internal/BuildCacheServices.java

            registration.addProvider(new ServiceRegistrationProvider() {
    
                @Provides
                TarPackerFileSystemSupport createPackerFileSystemSupport(Deleter deleter) {
                    return new DefaultTarPackerFileSystemSupport(deleter);
                }
    
                @Provides
                BuildCacheEntryPacker createResultPacker(
                    TarPackerFileSystemSupport fileSystemSupport,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedProjectScopeServices.java

                FileCollectionFactory fileCollectionFactory,
                ObjectFactory objectFactory,
                FileSystem fileSystem,
                Factory<PatternSet> patternSetFactory,
                Deleter deleter,
                DocumentationRegistry documentationRegistry,
                ProviderFactory providers,
                TaskDependencyFactory taskDependencyFactory,
                DecompressionCoordinator decompressionCoordinator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. samples/bookinfo/platform/kube/cleanup.sh

        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
      kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo-versions.yaml" >/dev/null 2>&1
    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    echo "Application cleanup may take up to one minute"
    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    function cleanup() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. api/discovery/apis__admissionregistration.k8s.io__v1alpha1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils.go

    // 3. if the pod has been deleted, use the `deletionTimestamp - grace_period` to estimate the moment of deletion
    // 4. fallback to pod's creation time
    //
    // Pods owned by Kubelet are marked with Ready=False condition when
    // transitioning to terminal phase, thus being handled by (1.) or (2.).
    // Orphaned pods are deleted by PodGC, thus being handled by (3.).
    func getFinishedTime(p *v1.Pod) time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. api/discovery/apis__admissionregistration.k8s.io__v1beta1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top