Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,693 for Invoke (0.13 sec)

  1. guava-tests/test/com/google/common/reflect/InvokableTest.java

        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
        assertEquals(1, prepender.times);
      }
    
      public void testConstructor_returning() throws Exception {
        Invokable<?, Prepender> delegate =
            Prepender.constructor(String.class, int.class).returning(Prepender.class);
        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. src/log/slog/internal/ignorepc.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package internal
    
    // If IgnorePC is true, do not invoke runtime.Callers to get the pc.
    // This is solely for benchmarking the slowdown from runtime.Callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 338 bytes
    - Viewed (0)
  3. cluster/gce/windows/testonly/install-ssh.psm1

      }
    
      # Download open-ssh.
      # Use TLS 1.2: needed for Invoke-WebRequest downloads from github.com.
      [Net.ServicePointManager]::SecurityProtocol = `
          [Net.SecurityProtocolType]::Tls12
      $url = ("https://github.com/PowerShell/Win32-OpenSSH/releases/download/" +
              "v7.9.0.0p1-Beta/OpenSSH-Win64.zip")
      $ProgressPreference = 'SilentlyContinue'
      Invoke-WebRequest $url -OutFile C:\openssh-win64.zip
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/UnmanagedModelCreationRuleExtractor.java

                if (inputs.size() == 0) {
                    instance = ruleInvoker.invoke();
                } else {
                    Object[] args = new Object[inputs.size()];
                    for (int i = 0; i < inputs.size(); i++) {
                        args[i] = inputs.get(i).getInstance();
                    }
    
                    instance = ruleInvoker.invoke(args);
                }
                if (instance == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup.go

    // instance of a RateLimiter that will be used to rate limit the return rate
    // of the active number of request(s). 'count' is the number of requests in
    // flight that are expected to invoke 'Done' on this wait group.
    type RateLimiterFactoryFunc func(count int) (RateLimiter, context.Context, context.CancelFunc)
    
    // RateLimitedSafeWaitGroup must not be copied after first use.
    type RateLimitedSafeWaitGroup struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodAccess.java

         *
         * <p>Note that not every method is known. Some methods may require an attempt invoke it in order for them to be discovered.</p>
         */
        boolean hasMethod(String name, @Nullable Object... arguments);
    
        /**
         * Invokes the method with the given name and arguments.
         */
        DynamicInvokeResult tryInvokeMethod(String name, @Nullable Object... arguments);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. testing/performance/README.md

    2. Details for how to invoke Gradle (or Maven). This includes the tasks to run, the JVM args, whether the daemon or tooling API should be used to invoke Gradle, etc.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ForwardingDeque.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingDeque}.
     *
     * @author Kurt Alfred Kluever
     * @since 12.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ForwardingExecutorService.java

     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingExecutorService}.
     *
     * @author Kurt Alfred Kluever
     * @since 10.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleInvoker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.inspect;
    
    public interface ModelRuleInvoker<R> {
        R invoke(Object... args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 732 bytes
    - Viewed (0)
Back to top