Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for autoclass (0.46 sec)

  1. src/mdo/reader-stax.vm

            #if ( $locationTracking )
                        ${classLcapName}.${field.name}(parse${field.toClass.name}(parser, strict, source));
            #elseif ( $needXmlContext )
                        ${classLcapName}.${field.name}(parse${field.toClass.name}(parser, strict, context));
            #else
                        ${classLcapName}.${field.name}(parse${field.toClass.name}(parser, strict));
            #end
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/features/withstaticreference/WithExtensionReferences.java

     * the name of the callable is also transformed from "foo" to "getFoo".
     * It is possible to specify the custom name for the extension implementation, if needed.
     */
    public @interface WithExtensionReferences {
        Class<?> toClass();
        String methodName() default "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesReader.java

                    AnnotationUtils.findAnnotationMirror(element, WithExtensionReferences.class).ifPresent(annotation ->
                        AnnotationUtils.findAnnotationValue(annotation, "toClass").ifPresent(value -> {
                            TypeMirror typeMirror = (TypeMirror) value.getValue();
                            Type type = TypeUtils.extractType(typeMirror);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * 代入可能かどうかを返します。
         *
         * @param toClass
         *            代入先のクラス。{@literal null}であってはいけません
         * @param fromClass
         *            代入元のクラス。{@literal null}であってはいけません
         * @return 代入可能かどうか
         * @see Class#isAssignableFrom(Class)
         */
        public static boolean isAssignableFrom(final Class<?> toClass, Class<?> fromClass) {
            assertArgumentNotNull("toClass", toClass);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTestSupport.groovy

            diagnostics.diagnostics.each {
                sb.append("In $it\n")
            }
    
            throw new RuntimeException(sb.toString())
        }
    
        @CompileStatic
        protected GeneratedClass toClass(String fqn, String script) {
            toApi([(fqn): script]).classes[fqn]
        }
    
        protected void noSuchMethod(Class c, String name, Class... argTypes) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    	// Such tags are recorded with the unknown prefix as the name space URL.
    	Strict bool
    
    	// When Strict == false, AutoClose indicates a set of elements to
    	// consider closed immediately after they are opened, regardless
    	// of whether an end element is present.
    	AutoClose []string
    
    	// Entity can be used to map non-standard entity names to string replacements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

          #elseif ( $field.to && $field.multiplicity == "1" )
                        ${classLcapName}.${field.name}(parse${field.toClass.name}(parser, strict));
                        break;
          #elseif ( $field.to && $field.multiplicity == "*" && $Helper.isFlatItems( $field ) )
                        ${field.name}.add(parse${field.toClass.name}(parser, strict));
                        break;
          #elseif ( $field.to && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

            val sslSocket =
              route.address.sslSocketFactory.createSocket(
                rawSocket,
                route.address.url.host,
                route.address.url.port,
                // autoClose:
                true,
              ) as SSLSocket
    
            val tlsEquipPlan = planWithCurrentOrInitialConnectionSpec(connectionSpecs, sslSocket)
            val connectionSpec = connectionSpecs[tlsEquipPlan.connectionSpecIndex]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    func BenchmarkHTMLAutoClose(b *testing.B) {
    	b.RunParallel(func(p *testing.PB) {
    		for p.Next() {
    			d := NewDecoder(strings.NewReader(testInputHTMLAutoClose))
    			d.Strict = false
    			d.AutoClose = HTMLAutoClose
    			d.Entity = HTMLEntity
    			for {
    				_, err := d.Token()
    				if err != nil {
    					if err == io.EOF {
    						break
    					}
    					b.Fatalf("unexpected error: %v", err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Attr", Type, 0},
    		{"Attr.Name", Field, 0},
    		{"Attr.Value", Field, 0},
    		{"CharData", Type, 0},
    		{"Comment", Type, 0},
    		{"CopyToken", Func, 0},
    		{"Decoder", Type, 0},
    		{"Decoder.AutoClose", Field, 0},
    		{"Decoder.CharsetReader", Field, 0},
    		{"Decoder.DefaultSpace", Field, 1},
    		{"Decoder.Entity", Field, 0},
    		{"Decoder.Strict", Field, 0},
    		{"Directive", Type, 0},
    		{"Encoder", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top