Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for firstDot (0.16 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    			}
    			mgr.sourcesReady = &sourcesReadyStub{}
    			mgr.state.SetMachineState(testCase.machineState)
    			mgr.state.SetMemoryAssignments(testCase.assignments)
    			if testCase.firstPod != nil {
    				mgr.containerMap.Add(testCase.firstPod.Name, testCase.firstPod.Spec.Containers[0].Name, "fakeID0")
    			}
    			pod := testCase.podAllocate
    			container := &pod.Spec.Containers[0]
    			err := mgr.Allocate(pod, container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. src/image/draw/draw.go

    				i0 := dst0.PixOffset(r.Min.X, r.Min.Y)
    				i1 := i0 + r.Dx()
    				for i := i0; i < i1; i++ {
    					dst0.Pix[i] = colorIndex
    				}
    				firstRow := dst0.Pix[i0:i1]
    				for y := r.Min.Y + 1; y < r.Max.Y; y++ {
    					i0 += dst0.Stride
    					i1 += dst0.Stride
    					copy(dst0.Pix[i0:i1], firstRow)
    				}
    				return
    			} else if !processBackward(dst, r, src, sp) {
    				drawPaletted(dst0, r, src, sp, false)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    		return net.Dial("tcp", ts.Listener.Addr().String())
    	}
    	_, err := c.Get("http://firsthost.fake/")
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = c.Get("http://firsthost.fake/nosetcookie")
    	if err != nil {
    		t.Fatal(err)
    	}
    	got := jar.log.String()
    	want := `Cookies("http://firsthost.fake/")
    SetCookie("http://firsthost.fake/", [name=val])
    Cookies("http://secondhost.fake/secondpath")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Lists.java

       * returned list. Unlike {@link Arrays#asList}, the returned list is unmodifiable.
       *
       * <p>This is useful when a varargs method needs to use a signature such as {@code (Foo firstFoo,
       * Foo... moreFoos)}, in order to avoid overload ambiguity or to enforce a minimum argument count.
       *
       * <p>The returned list is serializable and implements {@link RandomAccess}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Lists.java

       * returned list. Unlike {@link Arrays#asList}, the returned list is unmodifiable.
       *
       * <p>This is useful when a varargs method needs to use a signature such as {@code (Foo firstFoo,
       * Foo... moreFoos)}, in order to avoid overload ambiguity or to enforce a minimum argument count.
       *
       * <p>The returned list is serializable and implements {@link RandomAccess}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    	// explicitly AddPod will as well correct the behavior.
    	firstPod.Spec.NodeName = node.Name
    	if err := scache.AddPod(logger, firstPod); err != nil {
    		t.Fatalf("err: %v", err)
    	}
    	if err := scache.RemovePod(logger, firstPod); err != nil {
    		t.Fatalf("err: %v", err)
    	}
    
    	queuedPodStore.Add(secondPod)
    	scheduler.ScheduleOne(ctx)
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    				inlMarksByPos[pos] = append(inlMarksByPos[pos], p)
    				firstPos = src.NoXPos
    
    			default:
    				// Special case for first line in function; move it to the start (which cannot be a register-valued instruction)
    				if firstPos != src.NoXPos && v.Op != ssa.OpArgIntReg && v.Op != ssa.OpArgFloatReg && v.Op != ssa.OpLoadReg && v.Op != ssa.OpStoreReg {
    					s.SetPos(firstPos)
    					firstPos = src.NoXPos
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	// move all pods to active queue when we were trying to schedule them
    	q.MoveAllToActiveOrBackoffQueue(logger, WildCardEvent, nil, nil, nil)
    	oldCycle := q.SchedulingCycle()
    
    	firstPod, _ := q.Pop(logger)
    	if diff := cmp.Diff(&expectedPods[0], firstPod.Pod); diff != "" {
    		t.Errorf("Unexpected pod (-want, +got):\n%s", diff)
    	}
    
    	// mark pods[1] ~ pods[totalNum-1] as unschedulable and add them back
    	for i := 1; i < totalNum; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top