Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for hasExt (0.11 sec)

  1. android/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
    - 59.6K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    			base := frame.varp // locals base pointer
    			if off >= 0 {
    				base = frame.argp // arguments and return values base pointer
    			}
    			ptr := base + uintptr(off)
    			if ptr < frame.sp {
    				// object hasn't been allocated in the frame yet.
    				continue
    			}
    			if stackTraceDebug {
    				println("stkobj at", hex(ptr), "of size", obj.size)
    			}
    			state.addObject(ptr, obj)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    			someExcluded = true
    			continue
    		}
    		anyIncluded = true
    		dt := dt // dt used in background after this iteration
    		if err := dt.fn(&dt); err != nil {
    			t.runPending(&dt) // in case that hasn't been done yet
    			t.failed = true
    			if t.keepGoing {
    				log.Printf("Failed: %v", err)
    			} else {
    				fatalf("Failed: %v", err)
    			}
    		}
    	}
    	t.runPending(nil)
    	timelog("end", "dist test")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    				case 8:
    					v.reset(OpConst8)
    				default:
    					panic("unexpected integer size")
    				}
    				v.AuxInt = 0
    				break // Be sure not to fallthrough - this is no longer OpRsh.
    			}
    			// If the Rsh hasn't been replaced with 0, still check if it is bounded.
    			fallthrough
    		case OpLsh8x8, OpLsh8x16, OpLsh8x32, OpLsh8x64,
    			OpLsh16x8, OpLsh16x16, OpLsh16x32, OpLsh16x64,
    			OpLsh32x8, OpLsh32x16, OpLsh32x32, OpLsh32x64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

       required. As such, try to remove older entries when you upgrade dependencies.
    
       Do not remove this header. If this header is removed it means the pull request hasn't
       been reviewed properly.
       Also, there should not be any "Generated by Gradle" origins left.
    -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	if len(newMeta.GetFinalizers()) > 0 {
    		// don't delete with finalizers remaining in the new object
    		return false
    	}
    	if oldMeta.GetDeletionTimestamp() == nil {
    		// don't delete if the existing object hasn't had a delete request made
    		return false
    	}
    	// delete if the existing object has no grace period or a grace period of 0
    	return oldMeta.GetDeletionGracePeriodSeconds() == nil || *oldMeta.GetDeletionGracePeriodSeconds() == 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                    try ( CloseableIterator<SmbResource> it = SmbEnumerationUtil
                            .doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null) ) {
                        while ( it.hasNext() ) {
                            try ( SmbResource r = it.next() ) {
                                try {
                                    r.delete();
                                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		oldApprovalState = &t // +k8s:verify-mutation:reason=clone
    	}
    	newApprovalState, reason := apihelpers.GetAPIApprovalState(newCRD.Annotations)
    
    	// if the approval state hasn't changed, never fail on approval validation
    	// this is allowed so that a v1 client that is simply updating spec and not mutating this value doesn't get rejected.  Imagine a controller controlling a CRD spec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    				// systemstack returns normally, so just follow the
    				// stack transition.
    				if usesLR && funcspdelta(f, frame.pc) == 0 {
    					// We're at the function prologue and the stack
    					// switch hasn't happened, or epilogue where we're
    					// about to return. Just unwind normally.
    					// Do this only on LR machines because on x86
    					// systemstack doesn't have an SP delta (the CALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Client-go/reflector: warns when the bookmark event for initial events hasn't been received ([#124614](https://github.com/kubernetes/kubernetes/pull/124614), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top