Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 245 for monoton (0.48 sec)

  1. guava-tests/test/com/google/common/util/concurrent/UninterruptibleMonitorTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    
    /**
     * Tests for {@link Monitor}'s uninterruptible methods.
     *
     * @author Justin T. Sampson
     */
    public class UninterruptibleMonitorTest extends MonitorTestCase {
    
      public UninterruptibleMonitorTest() {
        super(false);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 874 bytes
    - Viewed (0)
  2. platforms/core-runtime/time/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Monotonic clock implementation"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 869 bytes
    - Viewed (0)
  3. src/runtime/time_linux_amd64.s

    	LEAQ	0(SP), SI
    	MOVQ	runtime·vdsoClockgettimeSym(SB), AX
    	CALL	AX
    
    ret:
    	MOVQ	16(SP), AX	// realtime sec
    	MOVQ	24(SP), DI	// realtime nsec (moved to BX below)
    	MOVQ	0(SP), CX	// monotonic sec
    	IMULQ	$1000000000, CX
    	MOVQ	8(SP), DX	// monotonic nsec
    
    	MOVQ	R12, SP		// Restore real SP
    
    	// Restore vdsoPC, vdsoSP
    	// We don't worry about being signaled between the two stores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. build-logic/build.gradle.kts

    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
    }
    
    description = "Provides plugins that are used by Gradle subprojects"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
        val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

            if (!successors.isEmpty()) {
                throw new IllegalArgumentException();
            }
        }
    
        @Override
        public void prepareForExecution(Action<Node> monitor) {
            getTarget().onComplete(() -> monitor.execute(this));
        }
    
        @Nullable
        @Override
        public ResourceLock getProjectToLock() {
            // Ignore, as the node in the other build's execution graph takes care of this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/runtime/cputicks.go

    // license that can be found in the LICENSE file.
    
    //go:build !arm && !arm64 && !mips64 && !mips64le && !mips && !mipsle && !wasm
    
    package runtime
    
    // careful: cputicks is not guaranteed to be monotonic! In particular, we have
    // noticed drift between cpus on certain os/arch combinations. See issue 8976.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 12:47:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics_test.go

    	registry.CustomMustRegister(storageMonitor)
    
    	testCases := []struct {
    		desc           string
    		getterOverride func() ([]Monitor, error)
    		err            error
    		want           string
    	}{
    		{
    			desc: "fake etcd getter",
    			getterOverride: func() ([]Monitor, error) {
    				return []Monitor{fakeEtcdMonitor{storageSize: 1e9}}, nil
    			},
    			err: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/monitor/event/EventMonitor.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventMonitor {
    
        void startEvent(String eventName, String target, long timestamp);
    
        void endEvent(String eventName, String target, long timestamp);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.opensearch.monitor.jvm.JvmInfo;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.process.ProcessProbe;
    
    public class SuggestCreator {
    
        private static final Logger logger = LogManager.getLogger(SuggestCreator.class);
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            void prepareForExecution(Action<Node> monitor) {
                this.monitor = monitor
            }
    
            @Override
            protected DependenciesState doCheckDependenciesComplete() {
                for (TestNode dep in dependencies) {
                    if (!dep.isComplete()) {
                        return DependenciesState.NOT_COMPLETE
                    }
                }
                return DependenciesState.COMPLETE_AND_SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top