Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,247 for whatev (0.18 sec)

  1. src/cmd/go/internal/base/path.go

    func Cwd() string {
    	cwdOnce.Do(func() {
    		cwd = UncachedCwd()
    	})
    	return cwd
    }
    
    // ShortPath returns an absolute or relative name for path, whatever is shorter.
    func ShortPath(path string) string {
    	if rel, err := filepath.Rel(Cwd(), path); err == nil && len(rel) < len(path) {
    		return rel
    	}
    	return path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/time/internal_test.go

    func init() {
    	// Force US/Pacific for time zone tests.
    	ForceUSPacificForTesting()
    }
    
    func initTestingZone() {
    	// For hermeticity, use only tzinfo source from the test's GOROOT,
    	// not the system sources and not whatever GOROOT may happen to be
    	// set in the process's environment (if any).
    	// This test runs in GOROOT/src/time, so GOROOT is "../..",
    	// but it is theoretically possible
    	sources := []string{"../../lib/time/zoneinfo.zip"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_output.txt

    ! exists atomic
    ! exists atomic.exe
    
    go build -o myatomic.a sync/atomic
    exists myatomic.a
    exec $GOBIN/isarchive myatomic.a
    ! exists atomic
    ! exists atomic.a
    ! exists atomic.exe
    
    ! go build -o whatever cmd/gofmt sync/atomic
    stderr 'multiple packages'
    
    -- go.mod --
    module m
    
    go 1.16
    -- x.go --
    package main
    
    func main() {}
    -- p.go --
    package p
    -- isarchive/isarchive.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

        val c = this[i]
        // The WHATWG Host parsing rules accepts some character codes which are invalid by
        // definition for OkHttp's host header checks (and the WHATWG Host syntax definition). Here
        // we rule out characters that would cause problems in host headers.
        if (c <= '\u001f' || c >= '\u007f') {
          return true
        }
        // Check for the characters mentioned in the WHATWG Host parsing spec:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/goroot_executable_trimpath.txt

    # In this test, we are specifically checking the logic for deriving
    # the value of GOROOT from os.Executable when runtime.GOROOT is
    # trimmed away.
    
    # $GOROOT/bin/go is whatever the user has already installed
    # (using make.bash or similar). We can't make assumptions about what
    # options it may have been built with, such as -trimpath or not.
    # Instead, we build a fresh copy of the binary with known settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    	case white:
    		assert(obj.Type() == nil)
    		// All color values other than white and black are considered grey.
    		// Because black and white are < grey, all values >= grey are grey.
    		// Use those values to encode the object's index into the object path.
    		obj.setColor(grey + color(check.push(obj)))
    		defer func() {
    			check.pop().setColor(black)
    		}()
    
    	case black:
    		assert(obj.Type() != nil)
    		return
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. pilot/pkg/status/distribution/report_test.go

    )
    
    func TestReportSerialization(t *testing.T) {
    	in := Report{
    		Reporter:       "Me",
    		DataPlaneCount: 10,
    		InProgressResources: map[string]int{
    			(&status.Resource{
    				Name:      "water",
    				Namespace: "default",
    			}).String(): 1,
    		},
    	}
    	outbytes, err := yaml.Marshal(in)
    	RegisterTestingT(t)
    	Expect(err).To(BeNil())
    	out := Report{}
    	err = yaml.Unmarshal(outbytes, &out)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/release-notes.css

    }
    
    pre {
        overflow: auto;
    }
    
    ul.toc-sub {
      margin-bottom: 0;
    }
    
    button.display-toggle {
      cursor: pointer;
    }
    
    a.incubating-marker {
      display: inline;
      color: white;
      font-style: italic;
      font-size: 0.6em;
      text-shadow: none;
      margin-left: 0.6em;
      border-radius: 6px;
      background-color: rgb(160, 160, 160);
      border: 1px solid rgb(150, 150, 150);
      padding: 1px 5px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

        /**
         * A boolean flag indicating whether the artifact is meant to be used for the compile/runtime/test build path of a
         * consumer project.
         * <p>
         * Note: This property is about "build path", whatever it means in the scope of the consumer project. It is NOT
         * about Java classpath or anything alike. How artifact is being consumed depends heavily on the consumer project.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/flag.go

    	v = strings.TrimSpace(v)
    	if v == "" {
    		// Special case: -gcflags="" means no flags for command-line arguments
    		// (overrides previous -gcflags="-whatever").
    		f.values = append(f.values, ppfValue{match, []string{}})
    		return nil
    	}
    	if !strings.HasPrefix(v, "-") {
    		i := strings.Index(v, "=")
    		if i < 0 {
    			return fmt.Errorf("missing =<value> in <pattern>=<value>")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:20:43 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top