Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for MARK (0.04 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			}
    		})
    	}
    }
    
    // Populates desiredStateOfWorld cache with one volume/pod.
    // Enables controllerAttachDetachEnabled.
    // Calls Run()
    // Wait for volume mounted.
    // Mark volume as fsResizeRequired in ASW.
    // Verifies volume's fsResizeRequired flag is cleared later.
    func Test_Run_Positive_VolumeFSResizeControllerAttachEnabled(t *testing.T) {
    	blockMode := v1.PersistentVolumeBlock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. android/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
    - 63.1K bytes
    - Viewed (1)
  3. 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)
  4. src/cmd/compile/internal/ssa/prove.go

    		}
    		// No changes compared to information already in facts table.
    		if oldR == r {
    			return
    		}
    		ft.stack = append(ft.stack, fact{p, oldR})
    		ft.facts[p] = oldR & r
    		// If this relation is not satisfiable, mark it and exit right away
    		if oldR&r == 0 {
    			if parent.Func.pass.debug > 2 {
    				parent.Func.Warnl(parent.Pos, "unsat %s %s %s", v, w, r)
    			}
    			ft.unsat = true
    			return
    		}
    	}
    
    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. 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)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=skip-tests-condition]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=skip-tests-condition]"]
    ====
    
    In this case, Gradle will mark the skipped tests as "SKIPPED" rather than exclude them from the build.
    
    [[sec:forcing_java_tests_to_run]]
    == Forcing tests to run
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top