Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for beginning (0.12 sec)

  1. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    ! go mod init gopkg.in/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/user/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/user/pkg.v1$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_proxy_invalid.txt

    ! go list -m rsc.io/quote@latest
    stderr '^go: module rsc.io/quote: invalid response from proxy "'$GOPROXY'": invalid character ''i'' looking for beginning of value$'
    
    ! go list -m rsc.io/quote@1.5.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 397 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util/documentation.go

    // Examples is designed to help with producing examples for command line usage.
    // Its behavior is mimicking a similar kubectl function in the following ways:
    // - Beginning and trailing space characters (including empty lines), are stripped from the output.
    // - All lines of text are stripped of beginning and trailing spaces (thus loosing indentation) and are then double-space indented.
    func Examples(s string) string {
    	trimmedText := strings.TrimSpace(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/CancellationCrossVersionSpec.groovy

    class CancellationCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            settingsFile << '''
    rootProject.name = 'cancelling'
    '''
        }
    
        def "early cancel stops the build before beginning"() {
            buildFile << """
    throw new GradleException("should not run")
    """
            def cancel = GradleConnector.newCancellationTokenSource()
            def resultHandler = new TestResultHandler()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/go/printer/testdata/empty.input

    // a comment at the beginning of the file
    
    package empty
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 94 bytes
    - Viewed (0)
  6. src/go/printer/testdata/empty.golden

    // a comment at the beginning of the file
    
    package empty
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 94 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/fsys_walk.txt

    # Test that go list prefix... does not read directories not beginning with prefix.
    env GODEBUG=gofsystrace=1
    go list m...
    stderr mime
    stderr mime[\\/]multipart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 09:11:26 UTC 2022
    - 177 bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/exportdata.go

    		err = fmt.Errorf("invalid archive header")
    		return
    	}
    	name = strings.TrimSpace(string(hdr[:16]))
    	return
    }
    
    // FindExportData positions the reader r at the beginning of the
    // export data section of an underlying GC-created object/archive
    // file by reading from it. The reader must be positioned at the
    // start of the file before calling this function. The hdr result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. test/bom.go

    // runoutput
    
    // Copyright 2011 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.
    
    // Test source file beginning with a byte order mark.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
    	fmt.Print(prog)
    }
    
    var prog = `BOM
    package main
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 10 20:03:07 UTC 2012
    - 406 bytes
    - Viewed (0)
  10. test/fixedbugs/issue11359.go

    // errorcheck
    
    // Copyright 2015 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.
    
    // identifiers beginning with non-ASCII digits were incorrectly accepted.
    // issue 11359.
    
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 20:38:42 UTC 2015
    - 333 bytes
    - Viewed (0)
Back to top