Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 611 for Invoke (0.11 sec)

  1. 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. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	AllowCreateOnUpdate() bool
    	// PrepareForUpdate is invoked on update before validation to normalize
    	// the object.  For example: remove fields that are not to be persisted,
    	// sort order-insensitive list fields, etc.  This should not remove fields
    	// whose presence would be considered a validation error.
    	PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
    	// ValidateUpdate is invoked after default fields in the object have been
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. android/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
    - 25.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/StringUtil.java

        static {
            try {
                final Class<?> sharedSecretsClass = Class.forName("sun.misc.SharedSecrets");
                javaLangAccess = sharedSecretsClass.getDeclaredMethod("getJavaLangAccess").invoke(null);
                final Class<?> javaLangAccessClass = Class.forName("sun.misc.JavaLangAccess");
                newStringUnsafeMethod = javaLangAccessClass.getMethod("newStringUnsafe", char[].class);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            }
    
            override fun compile(workspace: File): File {
                return File(workspace, "classes").apply {
                    mkdirs()
                    compileTo.invoke(this)
                }
            }
    
            override fun instrumentedOutput(workspace: File): File {
                return File(workspace, "instrumented/classes")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/tunneling_test.go

    	podName := getPodName(ctx, ns, app)
    	args := []string{"proxy-config", "listeners", "-n", ns, podName, "-o", "json"}
    	retry.UntilSuccessOrFail(ctx, func() error {
    		out, _, err := istioCtl.Invoke(args)
    		if err != nil {
    			return fmt.Errorf("failed to get listeners of %s/%s: %s", app, ns, err)
    		}
    		if strings.Contains(out, "tunnelingConfig") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    		// running Go 1.21 with GOTOOLCHAIN=go1.22+auto, which invokes
    		// Go 1.22, then 'go get go@1.23.0' or 'go get needs_go_1_23'
    		// will invoke Go 1.23, but as the Go 1.23 child the reason for that
    		// will not be apparent here: it will look like we should be using Go 1.22.
    		// We rely on the targetEnv being set to know not to downgrade.
    		// A longer term problem with the sanity check is that the exact details
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/MoreExecutors.java

              Class.forName("com.google.appengine.api.ThreadManager")
                  .getMethod("currentRequestThreadFactory")
                  .invoke(null);
        } catch (IllegalAccessException | ClassNotFoundException | NoSuchMethodException e) {
          throw new RuntimeException("Couldn't invoke ThreadManager.currentRequestThreadFactory", e);
        } catch (InvocationTargetException e) {
          throw Throwables.propagate(e.getCause());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                            mv.visitLabel(tryBlockStart);
                            _ALOAD(0); // receiver reference to this
                            // Invoke the original method:
                            Type[] argumentTypes = Type.getArgumentTypes(methodData.descriptor);
                            for (int argIndex = 1; argIndex <= argumentTypes.length; ++argIndex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/Kerb5Context.java

            }
            else if ( EXT_GSS_CONTEXT_CLASS.isAssignableFrom(this.gssContext.getClass()) ) {
                try {
                    Key k = (Key) INQUIRE_SEC_CONTEXT.invoke(this.gssContext, new Object[] {
                        INQUIRE_TYPE_SESSION_KEY
                    });
                    return k.getEncoded();
                }
                catch (
                    IllegalAccessException |
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
Back to top