Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,885 for Parses (0.25 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix.go

    }
    
    // SocketControlMessage represents a socket control message.
    type SocketControlMessage struct {
    	Header Cmsghdr
    	Data   []byte
    }
    
    // ParseSocketControlMessage parses b as an array of socket control
    // messages.
    func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) {
    	var msgs []SocketControlMessage
    	i := 0
    	for i+CmsgLen(0) <= len(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Reflection.java

    @ElementTypesAreNonnullByDefault
    public final class Reflection {
    
      /**
       * Returns the package name of {@code clazz} according to the Java Language Specification (section
       * 6.7). Unlike {@link Class#getPackage}, this method only parses the class name, without
       * attempting to define the {@link Package} and hence load files.
       */
      public static String getPackageName(Class<?> clazz) {
        return getPackageName(clazz.getName());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Reflection.java

    @ElementTypesAreNonnullByDefault
    public final class Reflection {
    
      /**
       * Returns the package name of {@code clazz} according to the Java Language Specification (section
       * 6.7). Unlike {@link Class#getPackage}, this method only parses the class name, without
       * attempting to define the {@link Package} and hence load files.
       */
      public static String getPackageName(Class<?> clazz) {
        return getPackageName(clazz.getName());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/SystemPropertiesCommandLineConverterTest.groovy

        def converter = new SystemPropertiesCommandLineConverter();
    
        def convert(String... args) {
            converter.convert(Arrays.asList(args), new HashMap<String, String>()).sort()
        }
    
        def "parses system properties args"() {
            expect:
            convert("-Da=b", "-Dc=d") == [a: "b", c: "d"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/net/http/cookie.go

    		case "partitioned":
    			c.Partitioned = true
    			continue
    		}
    		c.Unparsed = append(c.Unparsed, parts[i])
    	}
    	return c, nil
    }
    
    // readSetCookies parses all "Set-Cookie" values from
    // the header h and returns the successfully parsed Cookies.
    func readSetCookies(h Header) []*Cookie {
    	cookieCount := len(h["Set-Cookie"])
    	if cookieCount == 0 {
    		return []*Cookie{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/go/parser/interface.go

    //
    // If src != nil, ParseFile parses the source from src and the filename is
    // only used when recording position information. The type of the argument
    // for the src parameter must be string, []byte, or [io.Reader].
    // If src == nil, ParseFile parses the file specified by filename.
    //
    // The mode parameter controls the amount of source text parsed and
    // other optional parser functionality. If the [SkipObjectResolution]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/TimeUnitsParserTest.groovy

    class TimeUnitsParserTest extends Specification {
    
        def parser = new TimeUnitsParser()
    
        def "parses time units"() {
            expect:
            def unit = parser.parseNotation(input, value)
            unit.value == normalizedValue
            unit.timeUnit == parsed
    
            where:
            value           |input          |parsed         | normalizedValue
            10              |'nanoseconds'  |NANOSECONDS    |10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 11 02:41:37 UTC 2013
    - 1.7K bytes
    - Viewed (0)
  8. src/go/format/example_test.go

    package format_test
    
    import (
    	"bytes"
    	"fmt"
    	"go/format"
    	"go/parser"
    	"go/token"
    	"log"
    )
    
    func ExampleNode() {
    	const expr = "(6+2*3)/4"
    
    	// parser.ParseExpr parses the argument and returns the
    	// corresponding ast.Node.
    	node, err := parser.ParseExpr(expr)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// Create a FileSet for node. Since the node does not come
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 19 17:49:53 UTC 2018
    - 753 bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            } while (!buffer.hasAny(",)"));
            return new ComplexExpression(IncludeType.EXPRESSIONS, null, expressions);
        }
    
        /**
         * Parses an expression that ends with the given delimiter. Returns null on failure and consumes input up to the parse failure point.
         */
        @Nullable
        private static Expression readDelimitedExpression(Buffer buffer, char endDelim, IncludeType type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableMap;
    import java.util.Deque;
    
    /** Parser for a map of reversed domain names stored as a serialized radix tree. */
    @GwtCompatible
    final class TrieParser {
    
      private static final Joiner DIRECT_JOINER = Joiner.on("");
    
      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top