Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 319 for DELETING (0.19 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/HandleStaleOutputsStep.java

                    @Override
                    public void run(BuildOperationContext context) throws IOException {
                        for (File file : filesToDelete) {
                            LOGGER.info("Deleting stale output file: {}", file.getAbsolutePath());
                            deleter.deleteRecursively(file);
                        }
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpBuildCacheServer.groovy

            this.webapp = new WebAppContext()
            // The following code is because of a problem under Windows: the file descriptors are kept open under JDK 11
            // even after server shutdown, which prevents from deleting the test directory
            this.webapp.setInitParameter("org.eclipse.jetty.servlet.Default.useFileMappedBuffer", "false")
        }
    
        TestFile getCacheDir() {
            Preconditions.checkNotNull(cacheDir)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiModifiablePsiTestServiceRegistrar.kt

    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * Registers services which are required for PSI modification operations (such as deleting a PSI element) to complete without throwing
     * exceptions.
     */
    object AnalysisApiModifiablePsiTestServiceRegistrar : AnalysisApiTestServiceRegistrar() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 19:50:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .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)
  10. 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)
Back to top