Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for hasExt (0.18 sec)

  1. guava/src/com/google/common/util/concurrent/Futures.java

          if (super.cancel(interruptIfRunning)) {
            /*
             * requireNonNull is generally safe: If cancel succeeded, then this Future was still
             * pending, so its `state` field hasn't been nulled out yet.
             *
             * OK, it's technically possible for this to fail in the presence of unsafe publishing, as
             * discussed in the comments in TimeoutFuture. TODO(cpovirk): Maybe check for null before
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    	// processed (being scheduled, in permit, or in the binding cycle).
    	//
    	// The values in the map are the entry of each pod in the inFlightEvents list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		// to clear those doublewords
    		if ctr == 1 {
    			rem += 64
    		}
    
    		// Clear the remainder starting at offset zero
    		offset := int64(0)
    
    		if rem >= 16 && ctr <= 1 {
    			// If the XXLXOR hasn't already been
    			// generated, do it here to initialize
    			// VS32 (V0) to 0.
    			p := s.Prog(ppc64.AXXLXOR)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REG_VS32
    			p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

              // Skip stale entry.
              return false;
            }
          } finally {
            currentSegment.postReadCleanup();
          }
        }
    
        @Override
        public boolean hasNext() {
          return nextExternal != null;
        }
    
        WriteThroughEntry nextEntry() {
          if (nextExternal == null) {
            throw new NoSuchElementException();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    var (
    	initialized bool
    
    	// These are primarily used to initialize the MainModules, and should be
    	// eventually superseded by them but are still used in cases where the module
    	// roots are required but MainModules hasn't been initialized yet. Set to
    	// the modRoots of the main modules.
    	// modRoots != nil implies len(modRoots) > 0
    	modRoots []string
    	gopath   string
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              // Skip stale entry.
              return false;
            }
          } finally {
            currentSegment.postReadCleanup();
          }
        }
    
        @Override
        public boolean hasNext() {
          return nextExternal != null;
        }
    
        WriteThroughEntry nextEntry() {
          if (nextExternal == null) {
            throw new NoSuchElementException();
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    * The AWS cloudprovider will cache results from DescribeInstances() if the set of nodes hasn't changed ([#26900](https://github.com/kubernetes/kubernetes/pull/26900), [@therc](https://github.com/therc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    			if prev, ok := previous[key]; ok && !changed.Contains(key) {
    				// Reuse the previous EnvoyFilterWrapper if it exists and hasn't changed when optimized config rebuild is enabled
    				efw = prev
    			}
    		}
    		// Rebuild the envoy filter in all other cases.
    		if efw == nil {
    			efw = convertToEnvoyFilterWrapper(&envoyFilterConfig)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Because the cause could be environmental and for backwards compatibility reasons, this behaviour hasn't changed yet.
    
    Back in Gradle 7.1 the `:generatePrecompiledScriptPluginAccessors` task responsible for the accessors generation has been marked as non-cacheable by default.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    	claim = newClaim
    
    	// internal provisioning
    
    	//  A previous provisionClaimOperation may just have finished while we were waiting for
    	//  the locks. Check that PV (with deterministic name) hasn't been provisioned
    	//  yet.
    
    	pvName := ctrl.getProvisionedVolumeNameForClaim(claim)
    	volume, err := ctrl.kubeClient.CoreV1().PersistentVolumes().Get(ctx, pvName, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top