Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 155 for DELETING (0.14 sec)

  1. 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)
  2. 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)
  3. pkg/controller/util/node/controller_utils.go

    	remaining := false
    	var updateErrList []error
    	logger := klog.FromContext(ctx)
    
    	if len(pods) > 0 {
    		RecordNodeEvent(ctx, recorder, nodeName, nodeUID, v1.EventTypeNormal, "DeletingAllPods", fmt.Sprintf("Deleting all Pods from Node %v.", nodeName))
    	}
    
    	for i := range pods {
    		// Defensive check, also needed for tests.
    		if pods[i].Spec.NodeName != nodeName {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. pkg/controller/controller_utils.go

    	if exp, exists, err := r.GetByKey(controllerKey); err == nil && exists {
    		if err := r.Delete(exp); err != nil {
    
    			logger.V(2).Info("Error deleting expectations", "controller", controllerKey, "err", err)
    		}
    	}
    }
    
    // SatisfiedExpectations returns true if the required adds/dels for the given controller have been observed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  5. pkg/kubemark/controller.go

    // respective replication controllers have been deleted and the nodes have
    // become unready. This is to cover for the fact that there is no proper cloud
    // provider for kubemark that would care for deleting the nodes.
    type kubemarkCluster struct {
    	client            kubeclient.Interface
    	nodeLister        listersv1.NodeLister
    	nodeSynced        cache.InformerSynced
    	nodesToDelete     map[string]bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    	switch r.Method {
    	case "Setstat", "Rename", "Link", "Symlink":
    		return sftp.ErrSSHFxOpUnsupported
    
    	case "Rmdir":
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			return errors.New("deleting all buckets not allowed")
    		}
    
    		cctx, cancel := context.WithCancel(context.Background())
    		defer cancel()
    
    		if prefix == "" {
    			// if all objects are not deleted yet this call may fail.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        NameAttrList function;
        function.set_name(xla_function_info.function_name);
        AddNodeAttr("function", function, &def);
    
        for (Node* node : nodes_to_remove) {
          VLOG(2) << "Deleting node " << node->DebugString();
          // Ensure that we do not attempt to add control edges to nodes that are
          // deleted.
          control_inputs.erase(node);
          control_outputs.erase(node);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

        exit 1
      fi
    
      echo "== Upgrading master to '${SERVER_BINARY_TAR_URL}'. Do not interrupt, deleting master instance. =="
    
      # Tries to figure out KUBE_USER/KUBE_PASSWORD by first looking under
      # kubeconfig:username, and then under kubeconfig:username-basic-auth.
      # TODO: KUBE_USER is used in generating ABAC policy which the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. build/common.sh

        if [[ "${tag}" != "${2}"* ]] ; then
          V=3 kube::log::status "Keeping image ${1}:${tag}"
          continue
        fi
    
        if [[ -z "${3:-}" || "${tag}" != "${3}" ]] ; then
          V=2 kube::log::status "Deleting image ${1}:${tag}"
          "${DOCKER[@]}" rmi "${1}:${tag}" >/dev/null
        else
          V=3 kube::log::status "Keeping image ${1}:${tag}"
        fi
      done
    }
    
    # Stop and delete all containers that match a pattern
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

                // since file system watching on Windows adds a lock on the watched directory, which is currently the project directory.
                // After deleting the contents of the watched directory, Gradle will stop watching the directory and release the file lock.
                // That may require a retry to delete the watched directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top