Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 323 for xremove (0.12 sec)

  1. src/cmd/dist/build.go

    				xremove(exe)
    			}
    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    		}
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

          if (hasNext()) {
            toRemove = iterator;
            return iterator.next();
          } else {
            throw new NoSuchElementException();
          }
        }
    
        @Override
        public void remove() {
          if (toRemove == null) {
            throw new IllegalStateException("no calls to next() since the last call to remove()");
          }
          toRemove.remove();
          toRemove = null;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

          if (hasNext()) {
            toRemove = iterator;
            return iterator.next();
          } else {
            throw new NoSuchElementException();
          }
        }
    
        @Override
        public void remove() {
          if (toRemove == null) {
            throw new IllegalStateException("no calls to next() since the last call to remove()");
          }
          toRemove.remove();
          toRemove = null;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. .bazelrc

    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating flatbuffer files.*=remote'
    build:rbe_cross_compile_base_xla --strategy_regexp='Executing genrule @llvm-project.*=remote'
    
    # Test-related settings below this point
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // removeContainer removes the container and the container logs.
    // Notice that we remove the container logs first, so that container will not be removed if
    // container logs are failed to be removed, and kubelet will retry this later. This guarantees
    // that container logs to be removed with the container.
    // Notice that we assume that the container should only be removed in non-running state, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Removed generally available feature gate `CSINodeExpandSecret`. ([#124462](https://github.com/kubernetes/kubernetes/pull/124462), [@carlory](https://github.com/carlory)) [SIG Storage]
    - Removed generally available feature gate `ConsistentHTTPGetHandlers`. ([#124463](https://github.com/kubernetes/kubernetes/pull/124463), [@carlory](https://github.com/carlory)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	return successfulDeletes, errorFromChannel(errCh)
    }
    
    // trackJobStatusAndRemoveFinalizers does:
    //  1. Add finished Pods to .status.uncountedTerminatedPods
    //  2. Remove the finalizers from the Pods if they completed or were removed
    //     or the job was removed.
    //  3. Increment job counters for pods that no longer have a finalizer.
    //  4. Add Complete condition if satisfied with current counters.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The method `isDeferredConfigurable()` was removed from `ExtensionSchema`.
     * `IdeaPlugin.performPostEvaluationActions()` and `EclipsePlugin.performPostEvaluationActions()` have been removed.
     * `The `BroadcastingCollectionEventRegister.getAddAction()` method has been removed with no replacement.
     * The internal `org.gradle.util` package is no longer imported by default.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        taskFaker.runNextTask()
        assertThat(cache.remove("a")).isTrue()
        assertAbsent("a")
        cache.close()
        createNewCache()
    
        // The journal will have no record that 'a' was removed. It will have an entry for 'a', but when
        // it tries to read the cache files, it will find they were deleted. Once it encounters an entry
        // with missing cache files, it should remove it from the cache entirely.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fakePodManager.RemovePod(pod)
    	fakePodState.removed = map[kubetypes.UID]struct{}{pod.UID: {}}
    
    	//pod is added to fakePodManager but pod state knows the pod is removed, so here findAndRemoveDeletedPods() will remove the pod and volumes it is mounted
    	dswp.findAndRemoveDeletedPods()
    	if dswp.pods.processedPods[podName] {
    		t.Fatalf("Failed to remove pods from desired state of world since they no longer exist")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top