Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for MARK (0.11 sec)

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

       *       should be rare.
       *   <li>The waiters list should be very short.
       * </ul>
       */
      private void removeWaiter(Waiter node) {
        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/net/url/url_test.go

    	// empty query
    	{
    		"http://www.google.com/?",
    		&URL{
    			Scheme:     "http",
    			Host:       "www.google.com",
    			Path:       "/",
    			ForceQuery: true,
    		},
    		"",
    	},
    	// query ending in question mark (Issue 14573)
    	{
    		"http://www.google.com/?foo=bar?",
    		&URL{
    			Scheme:   "http",
    			Host:     "www.google.com",
    			Path:     "/",
    			RawQuery: "foo=bar?",
    		},
    		"",
    	},
    	// query
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	}
    	if err := gState.endRegion(userRegion{tid, name}); err != nil {
    		return curCtx, false, err
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    // Handle the GC mark phase.
    //
    // We have sequence numbers for both start and end because they
    // can happen on completely different threads. We want an explicit
    // partial order edge between start and end here, otherwise we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    	if e, a := sets.New[string]("3-static"), newUIDSet(podWorkers.workQueue.GetWork()...); !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected queued items: %s", cmp.Diff(e, a))
    	}
    
    	// mark 3-static as deleted while 2-static is still running
    	podWorkers.workQueue.GetWork()
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("3-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodKill,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    		}
    	})
    }
    
    // tracebackHexdump hexdumps part of stk around frame.sp and frame.fp
    // for debugging purposes. If the address bad is included in the
    // hexdumped range, it will mark it as well.
    func tracebackHexdump(stk stack, frame *stkframe, bad uintptr) {
    	const expand = 32 * goarch.PtrSize
    	const maxExpand = 256 * goarch.PtrSize
    	// Start around frame.sp.
    	lo, hi := frame.sp, frame.sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    	//	if b.Control != nil && b.Control.Type.IsFlags() {
    	//		flive = true
    	//	}
    	//	for i := len(b.Values) - 1; i >= 0; i-- {
    	//		v := b.Values[i]
    	//		if flive && (v.Op == v.Op == ssa.OpPPC64MOVDconst) {
    	//			// The "mark" is any non-nil Aux value.
    	//			v.Aux = v
    	//		}
    	//		if v.Type.IsFlags() {
    	//			flive = false
    	//		}
    	//		for _, a := range v.Args {
    	//			if a.Type.IsFlags() {
    	//				flive = true
    	//			}
    	//		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    						VersionID: goi.VersionID,
    					}
    				}
    				return goi, ObjectNotFound{
    					Bucket: bucket,
    					Object: object,
    				}
    			}
    		}
    	}
    
    	//  Determine whether to mark object deleted for replication
    	markDelete := goi.VersionID != ""
    
    	// Default deleteMarker to true if object is under versioning
    	deleteMarker := opts.Versioned
    
    	if opts.VersionID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			firstFile = name
    		} else if pkg != p.Name {
    			// TODO(#45999): The choice of p.Name is arbitrary based on file iteration
    			// order. Instead of resolving p.Name arbitrarily, we should clear out the
    			// existing name and mark the existing files as also invalid.
    			badGoFile(name, &MultiplePackageError{
    				Dir:      p.Dir,
    				Packages: []string{p.Name, pkg},
    				Files:    []string{firstFile, name},
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    					// goroutine will do O(N^2) work with the number of
    					// goroutines it launches. This should be slow relative to
    					// the work involved in collecting a goroutine profile,
    					// which is O(N) with the high-water mark of the number of
    					// goroutines in this process (in the allgs slice).
    					runtime.Gosched()
    				}
    				if i == 0 {
    					ready.Done()
    				}
    			}
    		}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			class, err := pl.classLister.Get(claim.Spec.ResourceClassName)
    			if err != nil {
    				// If the class cannot be retrieved, allocation cannot proceed.
    				if apierrors.IsNotFound(err) {
    					// Here we mark the pod as "unschedulable", so it'll sleep in
    					// the unscheduleable queue until a ResourceClass event occurs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top