Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 101 for DELETING (0.15 sec)

  1. tests/fuzz/aggregate_controller_fuzzer.go

    // that targets the add and delete registry apis
    // of the aggregate controller. It does so by
    // creating a controller with a pseudo-random
    // Options{} and create pseudo-random service
    // registries and deleting them.
    func FuzzAggregateController(data []byte) int {
    	ops := map[int]string{
    		0: "AddRegistry",
    		1: "DeleteRegistry",
    	}
    	maxOps := 2
    	f := fuzz.NewConsumer(data)
    	opts := aggregate.Options{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tests/associations_has_one_test.go

    	// Replace -> same as append
    
    	// Delete
    	if err := DB.Model(&users).Association("Account").Delete(&users[0].Account); err != nil {
    		t.Errorf("no error should happened when deleting account, but got %v", err)
    	}
    
    	AssertAssociationCount(t, users, "Account", 2, "after delete")
    
    	// Clear
    	DB.Model(&users).Association("Account").Clear()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/public/concrete_function.h

    // all function inputs in `inputs`, and must not add any additional inputs on
    // the returned op. (i.e. don't call TFE_OpAddInput or TFE_OpAddInputList).
    // The caller is responsible for deleting the returned TFE_Op. If op
    // construction fails, `status` will be non-OK and the returned pointer will be
    // null.
    // TODO(bmzhao): Remove this function in a subsequent change; Design + implement
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/UnusedVersionsCacheCleanup.java

            }
            return false;
        }
    
        @Override
        protected void handleDeletion(File cacheDir) {
            LOGGER.debug("Deleting unused versioned cache directory at {}", cacheDir);
        }
    
        @Override
        protected int deleteEmptyParentDirectories(File baseDir, File dir) {
            // do not delete parent dirs
            return 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/FileBackedOutputStream.java

     * in CVE number once it's available.)
     *
     * <p>Temporary files created by this stream may live in the local filesystem until either:
     *
     * <ul>
     *   <li>{@link #reset} is called (removing the data in this stream and deleting the file), or...
     *   <li>this stream (or, more precisely, its {@link #asByteSource} view) is finalized during
     *       garbage collection, <strong>AND</strong> this stream was not constructed with {@linkplain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/delete.go

    		objectMeta.SetDeletionGracePeriodSeconds(utilpointer.Int64(1))
    	}
    
    	gracefulStrategy, ok := strategy.(RESTGracefulDeleteStrategy)
    	if !ok {
    		// If we're not deleting gracefully there's no point in updating Generation, as we won't update
    		// the obcject before deleting it.
    		return false, false, nil
    	}
    	// if the object is already being deleted, no need to update generation.
    	if objectMeta.GetDeletionTimestamp() != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 07 17:43:41 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/c/env_test.cc

            << dirpath;
    
        TF_DeleteFile(filepath.c_str(), s);
        ASSERT_TF_OK(s) << "TF_DeleteFile failed for " << filepath << ": "
                        << TF_Message(s);
    
        // Now deleting the directory should work.
        TF_DeleteDir(dirpath.c_str(), s);
        ASSERT_TF_OK(s) << "TF_DeleteDir failed for " << dirpath << ": "
                        << TF_Message(s);
    
        TF_DeleteStatus(s);
        break;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 10 20:52:48 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. 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)
Back to top