Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for Parses (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== XML parsing now requires recent parsers
    
    Gradle 8.4 now configures XML parsers with security features enabled.
    If your build logic has dependencies on old XML parsers that don't support secure parsing, your build may now fail.
    If you encounter a failure, check and update or remove any dependency on legacy XML parsers.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	}
    	t := (*interfaceType)(unsafe.Pointer(T))
    	if len(t.Methods) == 0 {
    		return true
    	}
    
    	// The same algorithm applies in both cases, but the
    	// method tables for an interface type and a concrete type
    	// are different, so the code is duplicated.
    	// In both cases the algorithm is a linear scan over the two
    	// lists - T's methods and V's methods - simultaneously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top