Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for DELETING (0.35 sec)

  1. plugin/pkg/admission/gc/gc_admission.go

    		APIVersion:      "*",
    		Resource:        "*",
    		Subresource:     "finalizers",
    		Name:            "*",
    		ResourceRequest: true,
    		Path:            "",
    	}
    }
    
    // Translates ref to a DeleteAttribute deleting the object referred by the ref.
    // OwnerReference only records the object kind, which might map to multiple
    // resources, so multiple DeleteAttribute might be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_en.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    success.upload_file_to_storage=Uploaded {0}
    success.sso_logout=Logged out.
    success.update_storage_tags=Updated tags for {0}.
    
    success.crud_create_crud_table=Created data.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    	return []framework.ClusterEventWithHint{
    		// All ActionType includes the following events:
    		// - Delete. An unschedulable Pod may fail due to violating an existing Pod's anti-affinity constraints,
    		// deleting an existing Pod may make it schedulable.
    		// - Update. Updating on an existing Pod's labels (e.g., removal) may make
    		// an unschedulable Pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. security/pkg/k8s/configutil_test.go

    					map[string]string{dataName: "test-data"})),
    			},
    			expectedErr: "",
    			clientMod:   createConfigMapAlreadyExistClient,
    		},
    		{
    			name:              "creation: namespace is deleting",
    			existingConfigMap: nil,
    			caBundle:          caBundle,
    			meta:              metav1.ObjectMeta{Namespace: namespaceName, Name: configMapName},
    			expectedActions: []ktesting.Action{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager.go

    	StopLivenessAndStartup(pod *v1.Pod)
    
    	// RemovePod handles cleaning up the removed pod state, including terminating probe workers and
    	// deleting cached results.
    	RemovePod(pod *v1.Pod)
    
    	// CleanupPods handles cleaning up pods which should no longer be running.
    	// It takes a map of "desired pods" which should not be cleaned up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    		castObj, ok = tombstone.Obj.(*apiextensionsv1.CustomResourceDefinition)
    		if !ok {
    			klog.Errorf("Tombstone contained object that is not expected %#v", obj)
    			return
    		}
    	}
    	klog.V(4).Infof("Deleting customresourcedefinition %q", castObj.Name)
    	c.enqueue(castObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      Args:
        output_directory: Output directory.
        overwrite: Where to clean the output directory if exists.
      """
      if overwrite and file_io.file_exists_v2(output_directory):
        logging.info(
            'Deleting existing output directory: %s .',
            output_directory,
        )
        file_io.delete_recursively_v2(output_directory)
    
      file_io.recursive_create_dir_v2(output_directory)
    
    
    def _validate_signatures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            }
        }
    
        protected boolean deleteDocument(final DataStoreParams paramMap, final Map<String, Object> dataMap) {
    
            if (logger.isDebugEnabled()) {
                logger.debug("Deleting {}", dataMap);
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            // required check
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    Description
    A lovely greeting task.
    
    Group
    Custom tasks
    ----
    
    == Built-in task types
    Gradle provides many built-in task types with common and popular functionality, such as copying or deleting files.
    
    This example task copies `*.war` files from the `source` directory to the `target` directory using the `Copy` built-in task:
    
    [source]
    ----
    tasks.register("copyTask",Copy) {
        from("source")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top