Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,226 for METHOD (0.1 sec)

  1. test/fixedbugs/issue25727.go

    var s = http.Server{}
    var _ = s.doneChan                  // ERROR "s.doneChan undefined .cannot refer to unexported field or method doneChan.$|unexported field or method|s.doneChan undefined"
    var _ = s.DoneChan                  // ERROR "s.DoneChan undefined .type http.Server has no field or method DoneChan.$|undefined field or method"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue28268.go

    // struct field and method names are suppressed.
    
    package p
    
    type T struct {
    	a, b, c int
    	E
    }
    
    type E struct{}
    
    func (T) b()  {} // ERROR "field and method named b|redeclares struct field name|field and method with the same name b"
    func (*T) E() {} // ERROR "field and method named E|redeclares struct field name|field and method with the same name E"
    
    func _() {
    	var x T
    	_ = x.a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 764 bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Request.kt

     * immutable.
     */
    class Request internal constructor(builder: Builder) {
      @get:JvmName("url")
      val url: HttpUrl = checkNotNull(builder.url) { "url == null" }
    
      @get:JvmName("method")
      val method: String = builder.method
    
      @get:JvmName("headers")
      val headers: Headers = builder.headers.build()
    
      @get:JvmName("body")
      val body: RequestBody? = builder.body
    
      @get:JvmName("cacheUrlOverride")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Preconditions.java

    /**
     * Static convenience methods that help a method or constructor check whether it was invoked
     * correctly (that is, whether its <i>preconditions</i> were met).
     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForCheckedSortedSet() {
        return Collections.emptySet();
      }
    
      protected Collection<Method> suppressForAbstractSet() {
        return Collections.emptySet();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

        // we create a test suite containing a test for every AbstractFutureTest test method and we
        // set it as the name of the test.  Then in runTest we can reflectively load and invoke the
        // corresponding method on AbstractFutureTest in the correct classloader.
        TestSuite suite = new TestSuite(AbstractFutureFallbackAtomicHelperTest.class.getName());
        for (Method method : AbstractFutureTest.class.getDeclaredMethods()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

            )
        }
    
        static class AddScenarioDefinitionInterceptor implements IMethodInterceptor {
            private final Method method
            private final RunFor runFor
    
            AddScenarioDefinitionInterceptor(Method method, RunFor runFor) {
                this.method = method
                this.runFor = runFor
            }
    
            @Override
            void intercept(IMethodInvocation invocation) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CurlHelper.java

            return request(Method.PUT, path).header("Content-Type", "application/json");
        }
    
        public CurlRequest delete(final String path) {
            return request(Method.DELETE, path).header("Content-Type", "application/json");
        }
    
        public CurlRequest request(final Method method, final String path) {
            return request(new FesenRequest(new CurlRequest(method, null), nodeManager, path));
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. pkg/kubelet/status/testing/mock_pod_status_provider.go

    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockPodManager) EXPECT() *MockPodManagerMockRecorder {
    	return m.recorder
    }
    
    // GetMirrorPodByPod mocks base method.
    func (m *MockPodManager) GetMirrorPodByPod(arg0 *v1.Pod) (*v1.Pod, bool) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetMirrorPodByPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(bool)
    	return ret0, ret1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/ProxyDispatchAdapter.java

                this.type = type;
                this.dispatch = dispatch;
            }
    
            @Override
            public Object invoke(Object target, Method method, Object[] parameters) throws Throwable {
                if (method.getName().equals("equals")) {
                    Object parameter = parameters[0];
                    if (parameter == null || !Proxy.isProxyClass(parameter.getClass())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top