Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 611 for Invoke (0.33 sec)

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

        }
        assertEquals(methodName, response.methodName);
        return response;
      }
    
      private Object invokeMethod(String methodName, Object... arguments) throws Exception {
        return getMethod(methodName, arguments).invoke(lockLikeObject, arguments);
      }
    
      private Method getMethod(String methodName, Object... arguments) throws Exception {
        METHODS:
        for (Method method : lockLikeObject.getClass().getMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     * may ultimately cause the application to slow down or crash.
     *
     * Both this class and [Response] implement [Closeable]. Closing a response simply
     * closes its response body. If you invoke [Call.execute] or implement [Callback.onResponse] you
     * must close this body by calling any of the following methods:
     *
     * * `Response.close()`
     * * `Response.body().close()`
     * * `Response.body().source().close()`
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            }
    
            return KaSimpleFunctionCall(
                partiallyAppliedSymbol,
                argumentMapping,
                toTypeArgumentsMapping(partiallyAppliedSymbol),
                call.callType == Call.CallType.INVOKE
            )
        }
    
        private fun ResolvedCall<*>.toPartiallyAppliedVariableSymbol(context: BindingContext): KaPartiallyAppliedVariableSymbol<KaVariableLikeSymbol>? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	if pluginSockDir != "" {
    		if _, err := os.Stat(pluginSockDir + "DEPRECATION"); err == nil {
    			klog.InfoS("Deprecation file found. Skip registration")
    			return nil
    		}
    	}
    	klog.InfoS("Deprecation file not found. Invoke registration")
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    	conn, err := grpc.DialContext(ctx, kubeletEndpoint,
    		grpc.WithTransportCredentials(insecure.NewCredentials()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/c/eager/immediate_execution_context.h

                                          std::unique_ptr<CustomDevice> device) = 0;
    
      // Return FunctionLibraryDefinition. Transformations need to use it to use it
      // to invoke MLIR compiler passes.
      virtual FunctionLibraryDefinition* FuncLibDef() = 0;
    
      // Resets the global rendezvous used for functions.
      virtual void ResetGlobalRendezvousForFunction() = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

          /**
           * Atomically reschedules this task and assigns the new future to {@link
           * #cancellationDelegate}.
           */
          @CanIgnoreReturnValue
          public Cancellable reschedule() {
            // invoke the callback outside the lock, prevents some shenanigans.
            Schedule schedule;
            try {
              schedule = CustomScheduler.this.getNextSchedule();
            } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  7. src/runtime/asm_arm64.s

    	// Set R20 to 8 and invoke BRK. The debugger should get the
    	// reason a call can't be injected from SP+8 and resume execution.
    	MOVD	$8, R20
    	BREAK
    	JMP	restore
    
    good:
    	// Registers are saved and it's safe to make a call.
    	// Open up a call frame, moving the stack if necessary.
    	//
    	// Once the frame is allocated, this will set R20 to 0 and
    	// invoke BRK. The debugger should write the argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // package should invoke this internal function with appropriate parameters.
    // ctx: the context specified by the caller, for infinite polling pass
    // a context that never gets cancelled or expired.
    // immediate: if true, the 'condition' will be invoked before waiting for the interval,
    // in this case 'condition' will always be invoked at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    It also helps ensure that the same version of Gradle is used for builds by different developers and between local and CI machines.
    
    From now on, you will never invoke Gradle directly; instead, you will use the Gradle _wrapper_.
    
    == Step 3. Invoking the Gradle Wrapper
    Use the wrapper by entering the following command:
    [source,text]
    ----
    $ ./gradlew build
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    - a non-serializable Java lambda was used to implement the class,
    - or the class has been loaded by a classloader unknown to Gradle.
    
    Using a Java lambda means that the bytecode uses invoke-dynamic instead of creating an actual sub-class.
    The class for the invoke-dynamic instruction is generated at JVM runtime and Gradle cannot uniquely identify this class across different JVMs if the target functional interface is not serializable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top