Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,693 for Invoke (0.21 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt

            // Enable session tickets.
            setUseSessionTickets.invoke(sslSocket, true)
    
            // Assume platform support on 24+
            if (hostname != null && Build.VERSION.SDK_INT <= 23) {
              // This is SSLParameters.setServerNames() in API 24+.
              setHostname.invoke(sslSocket, hostname)
            }
    
            // Enable ALPN.
            setAlpnProtocols.invoke(
              sslSocket,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

    import org.gradle.internal.reflect.JavaPropertyReflectionUtil;
    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nullable;
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.lang.invoke.MethodType;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    import java.util.Arrays;
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/DefaultIsolatedAntBuilder.java

                Method getBuildListeners = projectClass.getDeclaredMethod("getBuildListeners");
                Vector listeners = (Vector) getBuildListeners.invoke(project);
                removeBuildListener.invoke(project, listeners.get(0));
                addBuildListener.invoke(project, antLogger);
            } catch (Exception ex) {
                throw UncheckedException.throwAsUncheckedException(ex);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 02 18:37:54 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postinst

            systemctl daemon-reload
            systemctl restart fess.service || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
                invoke-rc.d fess start || true
            else
                /etc/init.d/fess restart || true
            fi
    
        # older suse linux distributions do not ship with systemd
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

        Class<?> test = classLoader.loadClass(FuturesTest.class.getName());
        Object testInstance = test.getDeclaredConstructor().newInstance();
        test.getMethod("setUp").invoke(testInstance);
        test.getMethod(getName()).invoke(testInstance);
        test.getMethod("tearDown").invoke(testInstance);
      }
    
      private void checkHelperVersion(ClassLoader classLoader, String expectedHelperClassName)
          throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ReflectionBasedServiceMethod.java

        ReflectionBasedServiceMethod(Method target) {
            super(target);
            javaMethod = JavaMethod.of(Object.class, target);
        }
    
        @Override
        public Object invoke(Object target, @Nullable Object... args) {
            try {
                return javaMethod.invoke(target, args);
            } catch (Exception e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

         *
         * @see [TaskContainer.named]
         */
        @Deprecated("Use named(String) instead.", ReplaceWith("named(this)"))
        operator fun String.invoke(): TaskProvider<Task> {
            DeprecationLogger.deprecateBehaviour(String.format("Task '%s' found by String.invoke() notation.", this))
                .withContext("The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/html/template/multi_test.go

    	{"text", "some text", "some text", nil, true},
    	{"invoke x", `{{template "x" .SI}}`, "TEXT", tVal, true},
    	{"invoke x no args", `{{template "x"}}`, "TEXT", tVal, true},
    	{"invoke dot int", `{{template "dot" .I}}`, "17", tVal, true},
    	{"invoke dot []int", `{{template "dot" .SI}}`, "[3 4 5]", tVal, true},
    	{"invoke dotV", `{{template "dotV" .U}}`, "v", tVal, true},
    	{"invoke nested int", `{{template "nested" .I}}`, "17", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultModelRuleInvoker.java

            this.method = method;
            this.factory = factory;
        }
    
        @Override
        public R invoke(Object... args) {
            I instance = Modifier.isStatic(method.getModifiers()) ? null : factory.create();
            return method.invoke(instance, args);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

            }
        }
    
        @Override
        public java.lang.invoke.CallSite maybeDecorateIndyCallSite(java.lang.invoke.CallSite originalCallSite, MethodHandles.Lookup caller, String callType, String name, int flags) {
            CacheableCallSite ccs = toGroovyCacheableCallSite(originalCallSite);
            switch (callType) {
                case "invoke":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top