Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for respondsTo (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

         */
        @Override
        public List<MetaMethod> respondsTo(Object obj, String name, Object[] argTypes) {
            return Cast.uncheckedNonnullCast(super.respondsTo(obj, name, argTypes));
        }
    
        /**
         * This is overridden just to make the compiler happy about the unchecked conversions.
         */
        @Override
        public List<MetaMethod> respondsTo(Object obj, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            this.stderr = stderr
            this.stdout = stdout
            this.dist = dist
            this.useSeparateDaemonBaseDir = DefaultGradleConnector.metaClass.respondsTo(null, "daemonBaseDir")
            this.gradleUserHomeDir = context.gradleUserHomeDir
            this.daemonBaseDir = context.daemonBaseDir
            this.requiresDaemon = !GradleContextualExecuter.embedded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                }
                throw err.build()
            }
    
            void validate(String expectedOperationDisplayName) {
                if (testDisplayName != null && parent.respondsTo("getTestDisplayName")) {
                    assert testDisplayName == ((TestOperationDescriptor) parent).testDisplayName
                }
                if (operationDisplayName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                    return DynamicInvokeResult.found(metaMethod.doMethodInvoke(bean, arguments));
                }
    
                if (argsTransformer.canTransform(arguments)) {
                    List<MetaMethod> metaMethods = metaClass.respondsTo(bean, name);
                    for (MetaMethod method : metaMethods) {
                        if (method.getParameterTypes().length != arguments.length) {
                            continue;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. src/net/http/pprof/pprof.go

    }
    
    type profileEntry struct {
    	Name  string
    	Href  string
    	Desc  string
    	Count int
    }
    
    // Index responds with the pprof-formatted profile named by the request.
    // For example, "/debug/pprof/heap" serves the "heap" profile.
    // Index responds to a request for "/debug/pprof/" with an HTML page
    // listing the available profiles.
    func Index(w http.ResponseWriter, r *http.Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	mux.Handle("/ui/", http.StripPrefix("/ui", handler))
    	mux.Handle("/", redirectWithQuery("/ui", http.StatusTemporaryRedirect))
    	s := &http.Server{Handler: mux}
    	return s.Serve(ln)
    }
    
    // redirectWithQuery responds with a given redirect code, preserving query
    // parameters in the redirect URL. It does not convert relative paths to
    // absolute paths like http.Redirect does, so that HTTPServerArgs.Handlers can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pkg/xds/server.go

    	Watcher() Watcher
    	// Initialize checks the first request.
    	Initialize(node *core.Node) error
    	// Close discards the connection.
    	Close()
    	// Process responds to a discovery request.
    	Process(req *discovery.DiscoveryRequest) error
    	// Push responds to a push event queue
    	Push(ev any) error
    }
    
    func Stream(ctx ConnectionContext) error {
    	con := ctx.XdsConnection()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. internal/rest/client.go

    			logger.LogOnceIf(ctx, logSubsys, err, c.url.Host)
    			c.MarkOffline(err)
    		}
    		defer xhttp.DrainBody(resp.Body)
    		// Limit the ReadAll(), just in case, because of a bug, the server responds with large data.
    		b, err := io.ReadAll(io.LimitReader(resp.Body, c.MaxErrResponseSize))
    		if err != nil {
    			if xnet.IsNetworkOrHostDown(err, expectTimeouts) {
    				if !c.NoMetrics {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			}
    			if authenticated {
    				t.Errorf("%s: incorrectly authenticated token", tt.test)
    			}
    		}()
    	}
    }
    
    // recorderV1beta1Service records all token review requests, and responds with the
    // provided TokenReviewStatus.
    type recorderV1beta1Service struct {
    	lastRequest authenticationv1beta1.TokenReview
    	response    authenticationv1beta1.TokenReviewStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			}
    			if authenticated {
    				t.Errorf("%s: incorrectly authenticated token", tt.test)
    			}
    		}()
    	}
    }
    
    // recorderV1Service records all token review requests, and responds with the
    // provided TokenReviewStatus.
    type recorderV1Service struct {
    	lastRequest authenticationv1.TokenReview
    	response    authenticationv1.TokenReviewStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top