Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

      "ModuleOp"> {
      let summary = "generate a temporary file and invoke InitTextFileToImportPass";
      let constructor = "::mlir::tf_test::CreateInitTextFileToImportTestPass()";
    }
    
    def InitTextFileToImportSavedModelTestPass : Pass<"tf-init-text-file-to-import-saved-model-test",
      "ModuleOp"> {
      let summary = "mimick a saved model and invoke InitTextFileToImportPass";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            origin: ObjectOrigin.NewObjectFromMemberFunction
        ): Any? {
            val dataFun = origin.function
            val receiverInstance = getObjectByResolvedOrigin(origin.receiver)
                ?: error("Tried to invoke a function $dataFun on a null receiver ${origin.receiver}")
    
            val callResult = invokeFunctionAndGetResult(receiverInstance, origin)
            return callResult.result
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. 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)
Back to top