Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for METHOD (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/loader/loader.go

    	o := l.OuterSym(i)
    	if o == 0 {
    		return false
    	}
    	return l.SubSym(o) != 0
    }
    
    // Note that we don't have a 'SetAttrSubSymbol' method in the loader;
    // clients should instead use the AddInteriorSym method to establish
    // containment relationships for host object symbols.
    
    // Returns whether the i-th symbol has ReflectMethod attribute set.
    func (l *Loader) IsReflectMethod(i Sym) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/time/time.go

    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    // The zero value of type Time is January 1, year 1, 00:00:00.000000000 UTC.
    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def "null action is forbidden for #method"() {
            given:
            buildScript """
                task copy(type: Copy) {
                    into "out"
                    from 'src'
                    ${method} 'dest', null
                }
            """
    
            expect:
            fails 'copy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top