Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for autoclass (0.2 sec)

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

        @GroovyPropertyGetter
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
        public static String intercept_text(
            @Receiver File self,
            @CallerClassName String consumer
        ) throws IOException {
            return Instrumented.groovyFileGetText(self, consumer);
        }
    
        @InterceptGroovyCalls
        @InstanceMethod
        @WithExtensionReferences(toClass = ResourceGroovyMethods.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top