Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 365 for DELETING (0.21 sec)

  1. src/os/removeall_noat.go

    					err = err1
    				}
    				if err1 != nil {
    					numErr++
    				}
    			}
    
    			// If we can delete any entry, break to start new iteration.
    			// Otherwise, we discard current names, get next entries and try deleting them.
    			if numErr != reqSize {
    				break
    			}
    		}
    
    		// Removing files from the directory may have caused
    		// the OS to reshuffle it. Simply calling Readdirnames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. docs/features/caching.md

     - ... Standard Events...
     - ResponseBodyEnd _(0 bytes)_
     - **CacheHit**
     - ConnectionReleased
     - CallEnd
     
    ## Cache directory
    
    The cache directory must be exclusively owned by a single instance.
    
    Deleting the cache when it is no longer needed can be done.  However this may delete the purpose of the cache
    which is designed to persist between app restarts.
    
    ```kotlin
    cache.delete()
    ```
     
    ## Pruning the Cache
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    	configurator.ipt6V = ipt6Ver
    
    	return configurator, nil
    }
    
    func (cfg *IptablesConfigurator) DeleteInpodRules() error {
    	var inpodErrs []error
    
    	log.Debug("Deleting iptables rules")
    
    	inpodErrs = append(inpodErrs, cfg.executeDeleteCommands(), cfg.delInpodMarkIPRule(), cfg.delLoopbackRoute())
    	return errors.Join(inpodErrs...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.go

    	if pod.Name == "my-test-pod" {
    		// The pod is at the end of its lifecycle -- let's clean up the allocated
    		// resources. In this case, our clean up is simply deleting the key written
    		// in the Reserve operation.
    		state.Delete(framework.StateKey(pod.Name))
    	}
    }
    
    // PreBind is the function invoked by the framework at "prebind" extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

     * <pre class='autoTested'>
     * task makePretty(type: Delete) {
     *   delete 'uglyFolder', 'uglyFile'
     *   followSymlinks = true
     * }
     * </pre>
     *
     * Be default symlinks will not be followed when deleting files. To change this behavior call
     * {@link Delete#setFollowSymlinks(boolean)} with true. On systems that do not support symlinks,
     * this will have no effect.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/test/fixtures/AbstractProjectBuilderSpec.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    import java.util.function.Predicate
    
    /**
     * An abstract class for writing tests using ProjectBuilder.
     * The fixture automatically takes care of deleting files creating in the temporary project directory used by the Project instance.
     * <p>
     * ProjectBuilder internally uses native services.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:13:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. 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)
  8. .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)
  9. 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)
  10. 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)
Back to top