Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 560 for parseRhs (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/NotationConverter.java

    import org.gradle.internal.exceptions.DiagnosticsVisitor;
    
    /**
     * A converter from notations of type {@link N} to results of type {@link T}.
     *
     * <p>This interface represents an SPI used to implement notation parsers, not the API to use to perform the conversions. Use {@link NotationParser} instead for this.
     */
    public interface NotationConverter<N, T> {
        /**
         * Attempt to convert the given notation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/arguments.go

    		}
    		return args[i].Name < args[j].Name
    	})
    
    	for _, arg := range args {
    		command = append(command, fmt.Sprintf("--%s=%s", arg.Name, arg.Value))
    	}
    
    	return command
    }
    
    // ArgumentsFromCommand parses a CLI command in the form "--foo=bar" to an Arg slice
    func ArgumentsFromCommand(command []string) []kubeadmapi.Arg {
    	args := []kubeadmapi.Arg{}
    	for i, arg := range command {
    		key, val, err := parseArgument(arg)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * Parses a subset of the C preprocessor language, to extract details of {@code #include}, {@code #import} and {@code #define} directives. Only handles a subset of the possible expressions that can be
     * used as the body of these directives.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. src/encoding/asn1/asn1.go

    		}
    	}
    	ret = string(bytes)
    	return
    }
    
    // T61String
    
    // parseT61String parses an ASN.1 T61String (8-bit clean string) from the given
    // byte slice and returns it.
    func parseT61String(bytes []byte) (ret string, err error) {
    	return string(bytes), nil
    }
    
    // UTF8String
    
    // parseUTF8String parses an ASN.1 UTF8String (raw UTF-8) from the given byte
    // array and returns it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue50427.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // The parser no longer parses type parameters for methods.
    // In the past, type checking the code below led to a crash (#50427).
    
    type T interface{ m[ /* ERROR "must have no type parameters" */ P any]() }
    
    func _(t T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 731 bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/xml/DomUtilTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.xml;
    
    import javax.xml.parsers.DocumentBuilder;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    
    /**
     * @author higa
     *
     */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top