Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for DELETING (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/uninstall.go

    		},
    	}
    	addFlags(uicmd, rootArgs)
    	addUninstallFlags(uicmd, uiArgs)
    	return uicmd
    }
    
    // uninstall uninstalls control plane by either pruning by target revision or deleting specified manifests.
    func uninstall(cmd *cobra.Command, ctx cli.Context, rootArgs *RootArgs, uiArgs *uninstallArgs) error {
    	l := clog.NewConsoleLogger(cmd.OutOrStdout(), cmd.ErrOrStderr(), installerScope)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    	"test.out":     true,
    	"build.out":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/runtime/pinner.go

    	if p == nil || p.refs == nil {
    		return
    	}
    	for i := range p.refs {
    		setPinned(p.refs[i], false)
    	}
    	// The following two lines make all pointers to references
    	// in p.refs unreachable, either by deleting them or dropping
    	// p.refs' backing store (if it was not backed by refStore).
    	p.refStore = [pinnerRefStoreSize]unsafe.Pointer{}
    	p.refs = p.refStore[:0]
    }
    
    func pinnerGetPtr(i *any) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top