Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for Interpret (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    func parse(x string) gover {
    	var v gover
    
    	// Parse major version.
    	var ok bool
    	v.major, x, ok = cutInt(x)
    	if !ok {
    		return gover{}
    	}
    	if x == "" {
    		// Interpret "1" as "1.0.0".
    		v.minor = "0"
    		v.patch = "0"
    		return v
    	}
    
    	// Parse . before minor version.
    	if x[0] != '.' {
    		return gover{}
    	}
    
    	// Parse minor version.
    	v.minor, x, ok = cutInt(x[1:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/types.go

    	// ready indicates that this endpoint is prepared to receive traffic,
    	// according to whatever system is managing the endpoint. A nil value
    	// indicates an unknown state. In most cases consumers should interpret this
    	// unknown state as ready. For compatibility reasons, ready should never be
    	// "true" for terminating endpoints, except when the normal readiness
    	// behavior is being explicitly overridden, for example when the associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                contextualLabel == 'Type \'MyTask\' property \'file\' has @Input annotation used on property of type \'File\''
                details == 'A property of type \'File\' annotated with @Input cannot determine how to interpret the file'
                solutions == [
                    'Annotate with @InputFile for regular files',
                    'Annotate with @InputFiles for collections of files',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

            .suppressing(suppressForLinkedBlockingQueue())
            .createTestSuite();
      }
    
      // Not specifying KNOWN_ORDER for PriorityQueue and PriorityBlockingQueue
      // even though they do have it, because our tests interpret KNOWN_ORDER to
      // also mean that the iterator returns the head element first, which those
      // don't.
    
      public Test testsForPriorityBlockingQueue() {
        return QueueTestSuiteBuilder.using(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 7.7K bytes
    - Viewed (0)
  5. src/internal/goexperiment/flags.go

    // was compiled (as boolean and integer constants).
    //
    // Note especially that this package does not itself change behavior
    // at run time based on the GOEXPERIMENT variable.
    // The code used in builds to interpret the GOEXPERIMENT variable
    // is in the separate package internal/buildcfg.
    package goexperiment
    
    //go:generate go run mkconsts.go
    
    // Flags is the set of experiments that can be enabled or disabled in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HostSpecifier.java

        // IPv6 literals.
        HostAndPort parsedHost = HostAndPort.fromString(specifier);
        Preconditions.checkArgument(!parsedHost.hasPort());
        String host = parsedHost.getHost();
    
        // Try to interpret the specifier as an IP address. Note we build
        // the address rather than using the .is* methods because we want to
        // use InetAddresses.toUriString to convert the result to a string in
        // canonical form.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

    package org.gradle.internal.declarativedsl.settings
    
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class DeclarativeDslProjectSettingsIntegrationSpec extends AbstractIntegrationSpec {
    
        def "can interpret the settings file with the declarative DSL"() {
            given:
            file("settings.gradle.dcl") << """
                pluginManagement {
                    includeBuild("pluginIncluded")
                    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell_test.go

    		wantOut := buf.String()
    
    		if strings.Count(wantOut, "\n") != len(args)+bytes.Count(b, []byte("\n")) {
    			// One of the newlines in b was treated as a delimiter and not part of an
    			// argument. Our bash test script would interpret that as a syntax error.
    			t.Skipf("skipping %#q: contains a bare newline", b)
    		}
    
    		// We use the printf shell command to echo the arguments because, per
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForQueuesInJavaUtil.java

            .suppressing(suppressForLinkedBlockingQueue())
            .createTestSuite();
      }
    
      // Not specifying KNOWN_ORDER for PriorityQueue and PriorityBlockingQueue
      // even though they do have it, because our tests interpret KNOWN_ORDER to
      // also mean that the iterator returns the head element first, which those
      // don't.
    
      public Test testsForPriorityBlockingQueue() {
        return QueueTestSuiteBuilder.using(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 9.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            def depSubstitutionOption = '';
    
            if (preferProjectModules) {
                preferProjectModulesOption = 'preferProjectModules()'
            }
            if (!autoDependencySubstitution) { //only interpret depSubstitution in scenario without auto substitution (multi-project builds)
                depSubstitutionOption = depSubstitution;
            } else {
                winner = 'projectId("ModuleC")'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top