Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for forall (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

                throw new IllegalArgumentException("expecting generated closure class node");
            }
    
            List<MethodNode> doCallMethods = classNode.getDeclaredMethods("doCall");
            return doCallMethods.get(0);
        }
    
        /**
         * Returns true if the given statement may have some effect as part of a script body.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          return items.length - count;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Removes a single instance of the specified element from this queue, if it is present. More
       * formally, removes an element {@code e} such that {@code o.equals(e)}, if this queue contains
       * one or more such elements. Returns {@code true} if this queue contained the specified element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          return items.length - count;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Removes a single instance of the specified element from this queue, if it is present. More
       * formally, removes an element {@code e} such that {@code o.equals(e)}, if this queue contains
       * one or more such elements. Returns {@code true} if this queue contained the specified element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    .forTasks("bye")
                    .setStandardOutput(stdOut)
                    .run()
            }
    
            then:
            Pattern regex = Pattern.compile(".*hello.*bye.*buildFinishedAction.*", Pattern.DOTALL)
            assert stdOut.toString().matches(regex)
            buildFinishedHandler.getResult() == "build"
            stdOut.toString().contains("hello")
            stdOut.toString().contains("bye")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/func.go

    	}
    
    	if name := n.Nname; name.Typecheck() == 0 {
    		base.AssertfAt(name.Type() != nil, n.Pos(), "missing type: %v", name)
    		name.SetTypecheck(1)
    	}
    }
    
    // tcCall typechecks an OCALL node.
    func tcCall(n *ir.CallExpr, top int) ir.Node {
    	Stmts(n.Init()) // imported rewritten f(g()) calls (#30907)
    	n.Fun = typecheck(n.Fun, ctxExpr|ctxType|ctxCallee)
    
    	l := n.Fun
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/fmt.go

    	OADDSTR:           "+",
    	OANDAND:           "&&",
    	OANDNOT:           "&^",
    	OAND:              "&",
    	OAPPEND:           "append",
    	OAS:               "=",
    	OAS2:              "=",
    	OBREAK:            "break",
    	OCALL:             "function call", // not actual syntax
    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top