Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for deleteRS (0.14 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperIntegrationTest.groovy

            result.assertTaskExecuted(":hello")
            executer.stop()
    
            when:
            // Delete important file in distribution
            boolean deletedSomething = false
            gradleUserHome.eachFileRecurse(FileType.FILES) { file ->
                if (file.name.startsWith("gradle-launcher")) {
                    Files.delete(file.toPath())
                    println("Deleting " + file)
                    deletedSomething = true
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/test/framework/config.go

    		t.Fatal(err)
    	}
    }
    
    func (c *configPlan) Delete() error {
    	// Delete for each namespace concurrently.
    	g, _ := errgroup.WithContext(context.TODO())
    	for ns, y := range c.yamlText {
    		ns, y := ns, y
    		g.Go(func() error {
    			return c.deleteYAML(ns, y...)
    		})
    	}
    
    	// Wait for all each delete to complete.
    	return g.Wait()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateStored()
            def report = findReport()
    
            and:
            report.delete()
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateLoaded()
            findReport()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cni/pkg/ipset/nldeps_linux.go

    	}
    	return nil
    }
    
    func (m *realDeps) deleteIP(name string, ip netip.Addr, ipProto uint8) error {
    	err := netlink.IpsetDel(name, &netlink.IPSetEntry{
    		IP:       net.IP(ip.AsSlice()),
    		Protocol: &ipProto,
    	})
    	if err != nil {
    		return fmt.Errorf("failed to delete IP %s from ipset %s: %w", ip, name, err)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. cmd/typed-errors.go

    var errNoSuchPolicy = errors.New("Specified canned policy does not exist")
    
    // error returned when policy to be deleted is in use.
    var errPolicyInUse = errors.New("Specified policy is in use and cannot be deleted.")
    
    // error returned when more than a single policy is specified when only one is
    // expected.
    var errTooManyPolicies = errors.New("Only a single policy may be specified here.")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_host_send_device_context.h

      const xla::Shape shape_;
      tsl::AsyncValueRef<std::unique_ptr<se::Event>> done_event_;
    
      XlaHostSendDeviceContext(const XlaHostSendDeviceContext&) = delete;
      void operator=(const XlaHostSendDeviceContext&) = delete;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. cni/pkg/log/uds.go

    		return cniLog{}, false
    	}
    	if err := json.Unmarshal(raw["time"], &msg.Time); err != nil {
    		log.Debugf("Failed to unmarshal CNI plugin log entry: %v", err)
    		return cniLog{}, false
    	}
    	delete(raw, "msg")
    	delete(raw, "level")
    	delete(raw, "time")
    	msg.Arbitrary = make(map[string]any, len(raw))
    	for k, v := range raw {
    		var res any
    		if err := json.Unmarshal(v, &res); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                file.also(onFileAccess).outputStream()
    
            override fun inputStream(): InputStream =
                throw UnsupportedOperationException()
    
            override fun delete() {
                if (file.exists()) {
                    Files.delete(file.toPath())
                }
            }
    
            override fun moveFrom(file: File) {
                Files.move(file.toPath(), this.file.toPath(), StandardCopyOption.ATOMIC_MOVE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheCleanupBuildOperationType.java

             */
            File getCacheLocation();
        }
    
        /**
         * Sent after the cache has been cleaned up.
         */
        public interface Result {
    
            /**
             * The number of cache entries deleted during this clean up.
             */
            long getDeletedEntriesCount();
    
            /**
             * The timestamp the last cleanup was performed.
             */
            Instant getPreviousCleanupTime();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		for _, dir := range dirsToClean {
    			if err := CleanDir(dir); err != nil {
    				klog.Warningf("[reset] Failed to delete contents of %q directory: %v", dir, err)
    			}
    		}
    	} else {
    		fmt.Printf("[reset] Would delete contents of directories: %v\n", dirsToClean)
    	}
    
    	filesToClean := []string{
    		filepath.Join(configPathDir, kubeadmconstants.AdminKubeConfigFileName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top