Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for getTimer (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	}
    }
    
    // A value which may be passed to the which parameter for Getitimer and
    // Setitimer.
    type ItimerWhich int
    
    // Possible which values for Getitimer and Setitimer.
    const (
    	ItimerReal    ItimerWhich = ITIMER_REAL
    	ItimerVirtual ItimerWhich = ITIMER_VIRTUAL
    	ItimerProf    ItimerWhich = ITIMER_PROF
    )
    
    // Getitimer wraps getitimer(2) to return the current value of the timer
    // specified by which.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                    if (responseData != null && responseData.getLastModified() != null
                            && responseData.getLastModified().getTime() <= urlQueue.getLastModified().longValue()
                            && responseData.getHttpStatusCode() == 200) {
                        log(logHelper, LogType.NOT_MODIFIED, crawlerContext, urlQueue);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                                DataSeries<Duration> currentVersion = execution.getCurrentVersion().getTotalTime();
                                td().text(FormatSupport.timestamp(execution.getTime())).end();
                                td().a().target("_blank").href("https://github.com/gradle/gradle/commits/" + execution.getShortCommitId()).text(execution.getShortCommitId()).end().end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                OperationIdentifier owner = findOwner(buildOperationId);
                if (owner == null) {
                    return;
                }
    
                notificationListener.progress(new Progress(owner, progressEvent.getTime(), details));
            }
    
            private OperationIdentifier findOwner(OperationIdentifier id) {
                if (active.containsKey(id)) {
                    return id;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

            }
        }
    
        /**
         * Asserts that the given item can be added to this collection.
         */
        protected void assertCanAdd(T t) {
            assertCanAdd(getNamer().determineName(t));
        }
    
        @Override
        public Namer<T> getNamer() {
            return Cast.uncheckedNonnullCast(this.namer);
        }
    
        protected Instantiator getInstantiator() {
            return instantiator;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                return null;
            }
    
            try {
                if (PDF_DATE.equals(format)) {
                    final Calendar cal = DateConverter.toCalendar(value);
                    return cal != null ? cal.getTime() : null;
                }
    
                final long time = Joda.forPattern(format).parseMillis(value);
                return new Date(time);
            } catch (final Exception e) {
                return null;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

        /**
         * An object that represents the naming strategy used to name objects of this collection.
         *
         * @return Object representing the naming strategy.
         */
        Namer<T> getNamer();
    
        /**
         * <p>Returns the objects in this collection, as a map from object name to object instance.</p>
         *
         * <p>The map is ordered by the natural ordering of the object names (i.e. keys).</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. misc/wasm/wasm_exec.js

    						setInt64(sp + 8, (timeOrigin + performance.now()) * 1000000);
    					},
    
    					// func walltime() (sec int64, nsec int32)
    					"runtime.walltime": (sp) => {
    						sp >>>= 0;
    						const msec = (new Date).getTime();
    						setInt64(sp + 8, msec / 1000);
    						this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
    					},
    
    					// func scheduleTimeoutEvent(delay int64) int32
    					"runtime.scheduleTimeoutEvent": (sp) => {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                                        Writer writer = null;
                                        try {
                                            final JavaFileObject file = processingEnv.getFiler().createSourceFile(className);
    
                                            writer = new BufferedWriter(file.openWriter());
                                            writer.append(String.format("public class %s {\\n", className));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

                                        Writer writer = null;
                                        try {
                                            final JavaFileObject file = processingEnv.getFiler().createSourceFile(className);
    
                                            writer = new BufferedWriter(file.openWriter());
                                            writer.append(String.format("public class %s {\\n", className));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
Back to top