Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 180 for METHOD (0.14 sec)

  1. src/testing/testing.go

    //
    // The naming convention to declare examples for the package, a function F, a type T and
    // method M on type T are:
    //
    //	func Example() { ... }
    //	func ExampleF() { ... }
    //	func ExampleT() { ... }
    //	func ExampleT_M() { ... }
    //
    // Multiple example functions for a package/type/function/method may be provided by
    // appending a distinct suffix to the name. The suffix must start with a
    // lower-case letter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            final String method = request.getMethod();
            for (final String m : methods) {
                if (m.equals(method)) {
                    return true;
                }
            }
            writeJsonResponse(HttpServletResponse.SC_METHOD_NOT_ALLOWED, escapeJsonKeyValue(MESSAGE_FIELD, method + " is not allowed."));
            return false;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	return &kmsservice.StatusResponse{Healthz: "ok", KeyID: t.keyID, Version: "v2beta1"}, nil
    }
    
    // The factory method to create mock envelope service.
    func newMockEnvelopeService(ctx context.Context, endpoint string, timeout time.Duration) (envelope.Service, error) {
    	return &testEnvelopeService{nil}, nil
    }
    
    // The factory method to create mock envelope service which always returns error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    		switch {
    		case p.tok == token.LBRACK:
    			// generic method or embedded instantiated type
    			lbrack := p.pos
    			p.next()
    			p.exprLev++
    			x := p.parseExpr()
    			p.exprLev--
    			if name0, _ := x.(*ast.Ident); name0 != nil && p.tok != token.COMMA && p.tok != token.RBRACK {
    				// generic method m[T any]
    				//
    				// Interface methods do not have type parameters. We parse them for a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // a task to finish, then execute another one which waits
                // for the initial task...
                // In order to work around that problem, we override the
                // invokeAll method, so that whenever the method is called,
                // the pool core size will be incremented before submitting
                // all the tasks, then the thread will block waiting for all
                // those subtasks to finish.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // method for constructing TensorFlow Lite op:
    //
    //   TFL::[op] createTFLOp(ConvertTFConvOpMatchState *state,
    //                         PatternRewriter &rewriter, Location loc,
    //                         Type result_type, Value input,
    //                         Value filter, Value bias) const;
    //
    // And also the following method for getting the dimension for bias tensor:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            }
            return ant;
        }
    
        @Override
        public AntBuilder createAntBuilder() {
            return getAntBuilderFactory().create();
        }
    
        /**
         * This method is used when scripts access the project via project.
         */
        @Override
        public ProjectInternal getProject() {
            return this;
        }
    
        @Override
        public IsolatedProject getIsolated() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    	$.fn.jstree = function (settings) {
    		var isMethodCall = (typeof settings == 'string'), // is this a method call like $().jstree("open_node")
    			args = Array.prototype.slice.call(arguments, 1),
    			returnValue = this;
    
    		// if a method call execute the method on all selected instances
    		if(isMethodCall) {
    			if(settings.substring(0, 1) == '_') { return returnValue; }
    			this.each(function() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  9. src/crypto/x509/x509.go

    			aiaValues = append(aiaValues, authorityInfoAccess{
    				Method:   oidAuthorityInfoAccessOcsp,
    				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
    			})
    		}
    		for _, name := range template.IssuingCertificateURL {
    			aiaValues = append(aiaValues, authorityInfoAccess{
    				Method:   oidAuthorityInfoAccessIssuers,
    				Location: asn1.RawValue{Tag: 6, Class: 2, Bytes: []byte(name)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for this property cannot be changed any further.'
        }
    
        def "finalizes upstream properties when value read using #method and disallow unsafe reads"() {
            def a = property()
            def b = property()
            def c = elementProperty()
            def property = property()
            property.disallowUnsafeRead()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top