Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for setitimer (0.26 sec)

  1. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

            final Calendar calendar;
            if (locale == null) {
                calendar = Calendar.getInstance();
            } else {
                calendar = Calendar.getInstance(locale);
            }
            calendar.setTime(date);
            return calendar;
        }
    
        /**
         * 文字列を{@link Time}に変換します。
         *
         * @param str
         *            文字列
         * @return 変換された{@link Time}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

            final Calendar calendar;
            if (locale == null) {
                calendar = Calendar.getInstance();
            } else {
                calendar = Calendar.getInstance(locale);
            }
            calendar.setTime(date);
            return calendar;
        }
    
        /**
         * 文字列を{@link Timestamp}に変換します。
         *
         * @param str
         *            文字列
         * @return 変換された{@link Timestamp}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    func (w *timeIncrementingWorkers) UpdatePod(options UpdatePodOptions, afterFns ...func()) {
    	func() {
    		w.lock.Lock()
    		defer w.lock.Unlock()
    		w.w.UpdatePod(options)
    		w.w.clock.(*clocktesting.FakePassiveClock).SetTime(w.w.clock.Now().Add(time.Second))
    		for _, fn := range afterFns {
    			fn()
    		}
    	}()
    	w.drainUnpausedWorkers()
    }
    
    // SyncKnownPods increments the clock after SyncKnownPods is called, but before the workers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

            final Calendar calendar;
            if (locale == null) {
                calendar = Calendar.getInstance();
            } else {
                calendar = Calendar.getInstance(locale);
            }
            calendar.setTime(date);
            return calendar;
        }
    
        /**
         * 文字列を{@link java.sql.Date}に変換します。
         *
         * @param str
         *            文字列
         * @return 変換された{@link java.sql.Date}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		return
    	}
    	t.Errorf("Failed to find request from user %s", username)
    }
    
    func (uss *uniformScenarioState) evalTo(lim time.Time, last, expectFair bool, margin float64) {
    	uss.clk.Run(&lim)
    	uss.clk.SetTime(lim)
    	if uss.doSplit && !last {
    		uss.t.Logf("%s: End of first half of scenario %q", uss.clk.Now().Format(nsTimeFmt), uss.name)
    	} else {
    		uss.t.Logf("%s: End of scenario %q", uss.clk.Now().Format(nsTimeFmt), uss.name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_gc_manager_test.go

    	assert.Len(fakeRuntime.ImageList, 2)
    
    	// Move clock by a lot, and the images should continue to not be garbage colleced
    	// See https://stackoverflow.com/questions/25065055/what-is-the-maximum-time-time-in-go
    	fakeClock.SetTime(time.Unix(1<<63-62135596801, 999999999))
    	images, err = manager.freeOldImages(ctx, images, fakeClock.Now(), oldStartTime)
    	require.NoError(t, err)
    	assert.Len(images, 1)
    	assert.Len(fakeRuntime.ImageList, 2)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				queue.AddUnschedulableIfNotPresent(logger, pInfo, 1)
    				// Override clock to exceed the DefaultPodMaxInUnschedulablePodsDuration so that unschedulable pods
    				// will be moved to activeQ
    				c.SetTime(timestamp.Add(DefaultPodMaxInUnschedulablePodsDuration + 1))
    				queue.flushUnschedulablePodsLeftover(logger)
    			},
    			wantAttempts:         2,
    			wantInitialAttemptTs: timestamp,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    t=new Date(n);return isNaN(t)?null:t},Oo.toString=Us.toString,tc.second=Rt(function(n){return new ec(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),tc.seconds=tc.second.range,tc.seconds.utc=tc.second.utc.range,tc.minute=Rt(function(n){return new ec(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),tc.minutes=tc.minute.range,tc.minutes.utc=tc.minute.utc.range,tc.hour=Rt(function(n){var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top