Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 933 for Parses (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cni/pkg/plugin/sidecar_iptables_unspecified.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import "errors"
    
    // ErrNotImplemented is returned when a requested feature is not implemented.
    var ErrNotImplemented = errors.New("not implemented")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pkg/controller/endpointslicemirroring/utils.go

    			Name:        &epp.Name,
    			Port:        &epp.Port,
    			Protocol:    &epp.Protocol,
    			AppProtocol: epp.AppProtocol,
    		})
    	}
    	return epsPorts
    }
    
    // getServiceFromDeleteAction parses a Service resource from a delete
    // action.
    func getServiceFromDeleteAction(obj interface{}) *corev1.Service {
    	if service, ok := obj.(*corev1.Service); ok {
    		return service
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. cni/pkg/plugin/sidecar_iptables.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    type iptables struct{}
    
    func newIPTables() InterceptRuleMgr {
    	return &iptables{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 810 bytes
    - Viewed (0)
Back to top