Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 152 for forall (0.26 sec)

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

        assertFalse(monitor.isOccupiedByCurrentThread());
    
        doEnterScenarioSetUp();
    
        boolean interruptedBeforeCall = Thread.currentThread().isInterrupted();
        Outcome actualOutcome = doCall();
        boolean occupiedAfterCall = monitor.isOccupiedByCurrentThread();
        boolean interruptedAfterCall = Thread.currentThread().isInterrupted();
    
        if (occupiedAfterCall) {
          guard.setSatisfied(true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/MixInClosurePropertiesAsMethodsDynamicObjectTest.groovy

            when:
            obj.invokeMethod("m", ["not-a-number"] as Object[])
    
            then:
            MissingMethodException e = thrown()
            e.method == "doCall"
        }
    
        def "invokes configure method on property whose value is a NamedDomainObjectContainer"() {
            def container = Mock(NamedDomainObjectContainer)
            def cl = {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        assertFalse(monitor.isOccupiedByCurrentThread());
    
        doEnterScenarioSetUp();
    
        boolean interruptedBeforeCall = Thread.currentThread().isInterrupted();
        Outcome actualOutcome = doCall();
        boolean occupiedAfterCall = monitor.isOccupiedByCurrentThread();
        boolean interruptedAfterCall = Thread.currentThread().isInterrupted();
    
        if (occupiedAfterCall) {
          guard.setSatisfied(true);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/html.go

    body.darkmode text {
        fill: white;
    }
    
    body.darkmode svg polygon:first-child {
        fill: rgb(21, 21, 21);
    }
    
    .highlight-aquamarine     { background-color: aquamarine; color: black; }
    .highlight-coral          { background-color: coral; color: black; }
    .highlight-lightpink      { background-color: lightpink; color: black; }
    .highlight-lightsteelblue { background-color: lightsteelblue; color: black; }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/reflect/makefunc.go

    // does the following:
    //
    //   - converts its arguments to a slice of Values.
    //   - runs results := fn(args).
    //   - returns the results as a slice of Values, one per formal result.
    //
    // The implementation fn can assume that the argument [Value] slice
    // has the number and type of arguments given by typ.
    // If typ describes a variadic function, the final Value is itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

        private static final DefaultThrowableToTestFailureMapper FAILURE_MAPPER = new DefaultThrowableToTestFailureMapper(MAPPERS);
    
        private static final Pattern DESCRIPTOR_PATTERN = Pattern.compile("(.*)\\((.*)\\)(\\[\\d+])?", Pattern.DOTALL);
        private final IdGenerator<?> idGenerator;
        private final TestResultProcessor resultProcessor;
        private final Clock clock;
        private final Object lock = new Object();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Invokable.java

       * @throws IllegalArgumentException if the number of actual and formal parameters differ; if an
       *     unwrapping conversion for primitive arguments fails; or if, after possible unwrapping, a
       *     parameter value cannot be converted to the corresponding formal parameter type by a method
       *     invocation conversion.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/Invokable.java

       * @throws IllegalArgumentException if the number of actual and formal parameters differ; if an
       *     unwrapping conversion for primitive arguments fails; or if, after possible unwrapping, a
       *     parameter value cannot be converted to the corresponding formal parameter type by a method
       *     invocation conversion.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

                this.application = application;
                this.delegate = delegate;
                this.registrationPoint = registrationPoint;
            }
    
            @SuppressWarnings("unused")
            public void doCall(final Object... args) {
                buildOperationRunner.run(new Operation(application.getId(), registrationPoint) {
                    @Override
                    public void run(final BuildOperationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/testing/sub_test.go

    			startParallel: make(chan bool),
    			maxParallel:   tc.max,
    		}
    		for j, call := range tc.run {
    			doCall := func(f func()) chan bool {
    				done := make(chan bool)
    				go func() {
    					f()
    					done <- true
    				}()
    				return done
    			}
    			started := false
    			switch call.typ {
    			case add1:
    				signal := doCall(ctx.waitParallel)
    				select {
    				case <-signal:
    					started = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
Back to top