Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,170 for METHOD (0.08 sec)

  1. src/net/http/routing_tree.go

    }
    
    // matchMethodAndPath matches the method and path.
    // Its return values are the same as [routingNode.match].
    // The receiver should be a child of the root.
    func (n *routingNode) matchMethodAndPath(method, path string) (*routingNode, []string) {
    	if n == nil {
    		return nil, nil
    	}
    	if l, m := n.findChild(method).matchPath(path, nil); l != nil {
    		// Exact match of method name.
    		return l, m
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pom.xml

    							<className>**</className>
    							<differenceType>7006</differenceType>
    							<method>*</method>
    							<from>*</from>
    							<to>*</to>
    						</difference>
    						<difference>
    							<className>jcifs/Configuration</className>
    							<differenceType>7012</differenceType>
    							<method>boolean isSendNTLMTargetName()</method>
    						</difference>
    
    						<difference>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/internal/reflectlite/value.go

    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    // inappropriate to the kind of type causes a run time panic.
    //
    // The zero Value represents no value.
    // Its IsValid method returns false, its Kind method returns Invalid,
    // its String method returns "<invalid Value>", and all other methods panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            }
    
            @Override
            public void invoke(MethodInvocation method) throws Throwable {
                if (method.isGetter()) {
                    if (properties.containsKey(method.getName())) {
                        method.setResult(properties.get(method.getName()));
                        return;
                    }
                    if (unknown.contains(method.getName())) {
                        return;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. src/go/types/typeset.go

    			if check != nil {
    				err := check.newError(DuplicateDecl)
    				err.addf(atPos(pos), "duplicate method %s", m.name)
    				err.addf(atPos(mpos[other.(*Func)]), "other declaration of method %s", m.name)
    				err.report()
    			}
    		default:
    			// We have a duplicate method name in an embedded (not explicitly declared) method.
    			// Check method signatures after all types are computed (go.dev/issue/33656).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // Represents a quantization result of a single `QuantizableUnit`. It is
    // essentially a `(QuantizableUnit, Method)` pair, where the `Method`
    // corresponds to the quantization method eventually applied to the
    // `QuantizableUnit`.
    // Next ID: 3
    message QuantizationResult {
      QuantizableUnit quantizable_unit = 1;
      Method method = 2;
    }
    
    // A series of `QuantizationResult`s. See `QuantizationResult` for details.
    // Next ID: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Types.java

        private static final ImmutableMap<String, Method> typeVariableMethods;
    
        static {
          ImmutableMap.Builder<String, Method> builder = ImmutableMap.builder();
          for (Method method : TypeVariableImpl.class.getMethods()) {
            if (method.getDeclaringClass().equals(TypeVariableImpl.class)) {
              try {
                method.setAccessible(true);
              } catch (AccessControlException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        return std::nullopt;  // `call_op` is not a quantized function call.
      }
    
      absl::StatusOr<Method> method = GetQuantizationMethod(call_op);
      if (!method.ok()) {
        call_op->emitError() << "Failed to get quantization method: "
                             << method.status().ToString();
        return std::nullopt;
      }
    
      QuantizationResult result{};
      result.mutable_quantizable_unit()->set_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                        generateLanguageVersionSettingsBasedMetadataFlags(firSession.languageVersionSettings)
            )
    }
    
    private fun getAsmMethodSignatureWithCorrection(method: PsiMethod): String = buildString {
        append("(")
        if (method.containingClass?.isEnum == true && method.isConstructor) {
            // Enum constructors are represented without name/ordinal in light classes, which seems fine because they don't have name/ordinal
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
         * the actual value of this property is guaranteed to be present.</p>
         *
         * @param key the key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top