Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for DELETING (0.09 sec)

  1. src/os/executable_test.go

    			fmt.Fprint(os.Stderr, ep)
    		}
    		os.Exit(0)
    	}
    }
    
    func TestExecutableDeleted(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	switch runtime.GOOS {
    	case "windows", "plan9":
    		t.Skipf("%v does not support deleting running binary", runtime.GOOS)
    	case "openbsd", "freebsd", "aix":
    		t.Skipf("%v does not support reading deleted binary name", runtime.GOOS)
    	}
    	t.Parallel()
    
    	dir := t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. .teamcity/README.md

      - If anything bad happens, feel free to delete the project you created and retry (you may need to apply `Synchronization disabled` before deleting it).  
        
    If no errors, your new pipeline will be displayed on TeamCity web UI:
    
    ```
    Gradle
    |------ Master
    |        |--------- ...
    |
    |------ Release
    |        |--------- ...
    |                
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher_test.go

    			expectedLabels: namespace2Labels,
    		},
    		{
    			name:           "request is for deleting namespace, the labels should be from the cache",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 26 00:41:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		klog.V(1).ErrorS(err, "Error deleting Hns loadbalancer policy resource.", "hnsID", svcInfo.hnsID, "ClusterIP", svcInfo.ClusterIP())
    	} else {
    		// On successful delete, remove hnsId
    		svcInfo.hnsID = ""
    	}
    
    	if err := hns.deleteLoadBalancer(svcInfo.nodePorthnsID); err != nil {
    		mapStaleLoadbalancer[svcInfo.nodePorthnsID] = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) {
                walk.sorted(Comparator.reverseOrder()).forEach(f -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Deleting {}", f);
                    }
                    try {
                        Files.delete(f);
                    } catch (final IOException e) {
                        logger.warn("Failed to delete {}", f, e);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    				earliest[expiry] = begin
    			}
    		}
    	}
    	for expiry, files := range countFiles {
    		if notNeeded(expiry, *todo) {
    			u.logger.Printf("Files for %s not needed, deleting %v", expiry, files)
    			// The report already exists.
    			// There's another check in createReport.
    			u.deleteFiles(files)
    			continue
    		}
    		fname, err := u.createReport(earliest[expiry], expiry, files, lastWeek)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. cni/pkg/repair/repaircontroller.go

    )
    
    func (c *Controller) deleteBrokenPod(pod *corev1.Pod) error {
    	m := podsRepaired.With(typeLabel.Value(deleteType))
    	repairLog.Infof("Pod detected as broken, deleting: %s/%s", pod.Namespace, pod.Name)
    
    	// Make sure we are deleting what we think we are...
    	preconditions := &metav1.Preconditions{
    		UID:             &pod.UID,
    		ResourceVersion: &pod.ResourceVersion,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    === Removing the local module source
    
    With module artifacts available in a repository, we can now remove the module sources from the build. Since the composite is configured to automatically load available modules, this is as easy as deleting one or more module directories.
    
    ```
    rm -r modules/string-utils
    gradle run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter.go

    	if !mnt {
    		klog.V(4).Info(log("dir not mounted, deleting it [%s]", mountPath))
    		if err := os.Remove(mountPath); err != nil && !os.IsNotExist(err) {
    			return errors.New(log("failed to remove dir [%s]: %v", mountPath, err))
    		}
    		// remove volume data file as well
    		volPath := filepath.Dir(mountPath)
    		dataFile := filepath.Join(volPath, volDataFileName)
    		klog.V(4).Info(log("also deleting volume info data file [%s]", dataFile))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * Watching the build root directories is better since they are less likely to be deleted and
     * nearly no changes to the watched directories are necessary when running builds on the same project.
     *
     * To allow deleting the build root directories, we need to stop watching a build root directory if there are no more snapshots in the VFS inside,
     * since watched directories can't be deleted on Windows.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top