Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 122 for notifiers (0.24 sec)

  1. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

          @Override
          boolean isVisible(int modifiers) {
            return !Modifier.isPrivate(modifiers);
          }
        },
    
        PROTECTED {
          @Override
          boolean isVisible(int modifiers) {
            return Modifier.isPublic(modifiers) || Modifier.isProtected(modifiers);
          }
        },
    
        PUBLIC {
          @Override
          boolean isVisible(int modifiers) {
            return Modifier.isPublic(modifiers);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    		r, sz := utf8.DecodeRune(b)
    		if r <= 0xFF { // See A.6.1
    			return true
    		}
    		c.pDst = oldPDst
    		// Insert the first rune and ignore the modifiers. See A.6.2.
    		c.writeBytes(b[:sz])
    		i = len(b[sz:]) / 2 // Greek modifiers are always of length 2.
    	}
    
    	for ; i < maxIgnorable && c.next(); i++ {
    		switch r, _ := utf8.DecodeRune(c.src[c.pSrc:]); r {
    		// Above and Iota Subscript
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            when:
            manager.apply(rulesClass)
    
            then:
            1 * target.applyRules(null, rulesClass)
    
            and:
            manager.hasPlugin("foo")
        }
    
        def "action is notified when rules plugin with id is applied by class"() {
            def action = Mock(Action)
    
            given:
            addPluginId("foo", rulesClass)
            manager.withPlugin("foo", action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            received.await()
            daemonConnection.stop()
    
            then:
            1 * handler.onInput(input1) >> { received.countDown(); throw new RuntimeException() }
            0 * handler._
        }
    
        def "notifies disconnect handler on disconnect"() {
            Runnable handler = Mock()
            def received = new CountDownLatch(1)
    
            when:
            daemonConnection.onDisconnect(handler)
            connection.disconnect()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/trace/gen.go

    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    	GlobalRange(ctx *traceContext, ev *trace.Event)
    	GlobalMetric(ctx *traceContext, ev *trace.Event)
    
    	// Goroutine parts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            1 * lock.writeFile(_) >> { Runnable r -> r.run() }
            1 * initAction.initialize(lock) >> { throw failure }
    
            then:
            1 * lock.close()
            0 * _
        }
    
        def "notifies handler when lock is acquired and released"() {
            def action = Mock(Supplier)
            def onOpen = Mock(Consumer)
            def onClose = Mock(Consumer)
            def lock = Mock(FileLock)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

        }
    
        private static boolean resetOperatingSystemClassStaticFields() {
            try {
                OperatingSystem.getDeclaredFields()
                    .findAll { Modifier.isStatic(it.modifiers) && Modifier.isFinal(it.modifiers) }
                    .each { Field field ->
                    if (OperatingSystem.isAssignableFrom(field.getType())) {
                        makeFinalFieldAccessibleForTesting(field)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

    import org.gradle.buildinit.plugins.fixtures.ScriptDslFixture
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl.KOTLIN
    import static org.hamcrest.CoreMatchers.allOf
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  9. src/runtime/mgclimit.go

    	return now-l.lastUpdate.Load() > gcCPULimiterUpdatePeriod
    }
    
    // addAssistTime notifies the limiter of additional assist time. It will be
    // included in the next update.
    func (l *gcCPULimiterState) addAssistTime(t int64) {
    	l.assistTimePool.Add(t)
    }
    
    // addIdleTime notifies the limiter of additional time a P spent on the idle list. It will be
    // subtracted from the total CPU time in the next update.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/etcd/local.go

    			if endpoint == etcdClientAddress {
    				klog.V(1).Info("[etcd] This is the only remaining etcd member in the etcd cluster, skip removing it")
    				return nil
    			}
    		}
    	}
    
    	// notifies the other members of the etcd cluster about the removing member
    	etcdPeerAddress := etcdutil.GetPeerURL(&cfg.LocalAPIEndpoint)
    
    	klog.V(2).Infof("[etcd] get the member id from peer: %s", etcdPeerAddress)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
Back to top