Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 516 for beginning (0.13 sec)

  1. 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)
  2. 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)
  3. src/internal/xcoff/xcoff.go

    	C_EXT     = 2   // External symbol
    	C_STAT    = 3   // Static symbol
    	C_BLOCK   = 100 // Beginning or end of inner block
    	C_FCN     = 101 // Beginning or end of function
    	C_FILE    = 103 // Source file name and compiler information
    	C_HIDEXT  = 107 // Unnamed external symbol
    	C_BINCL   = 108 // Beginning of include file
    	C_EINCL   = 109 // End of include file
    	C_WEAKEXT = 111 // Weak external symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/structs/doc.go

    // Package structs defines marker types that can be used as struct fields
    // to modify the properties of a struct.
    //
    // By convention, a marker type should be used as the type of a field
    // named "_", placed at the beginning of a struct type definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 431 bytes
    - Viewed (0)
  5. test/fixedbugs/issue18393.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that compiler directives are ignored if they
    // don't start at the beginning of the line.
    
    package p
    
    //line issue18393.go:20
    import 42 // error on line 20
    
    
    /* //line not at start of line: ignored */ //line issue18393.go:30
    var x     // error on line 24, not 30
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 565 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/generate_goroot_PATH.txt

    # https://go.dev/issue/51473: to avoid the need for generators to rely on
    # runtime.GOROOT, 'go generate' should run the test with its own GOROOT/bin
    # at the beginning of $PATH.
    
    [short] skip
    
    [!GOOS:plan9] env PATH=
    [GOOS:plan9] env path=
    go generate .
    
    [!GOOS:plan9] env PATH=$WORK${/}bin
    [GOOS:plan9] env path=$WORK${/}bin
    go generate .
    
    -- go.mod --
    module example
    
    go 1.19
    -- main.go --
    //go:generate go run .
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 633 bytes
    - Viewed (0)
  7. src/encoding/json/stream.go

    	var context string
    	switch dec.tokenState {
    	case tokenTopValue:
    		context = " looking for beginning of value"
    	case tokenArrayStart, tokenArrayValue, tokenObjectValue:
    		context = " looking for beginning of value"
    	case tokenArrayComma:
    		context = " after array element"
    	case tokenObjectKey:
    		context = " looking for beginning of object key string"
    	case tokenObjectColon:
    		context = " after object key"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_std.txt

    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout golang.org/x/net/http2/hpack
    stdout cmd/vendor/golang\.org/x/arch/x86/x86asm
    
    # However, vendored packages should not match wildcard patterns beginning with cmd.
    go list cmd/...
    stdout cmd/compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 702 bytes
    - Viewed (0)
  9. src/internal/syscall/windows/memory_windows.go

    	AllocationBase uintptr
    	// The memory protection option when the region was initially allocated
    	AllocationProtect uint32
    	PartitionId       uint16
    	// The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
    	RegionSize uintptr
    	// The state of the pages in the region.
    	State uint32
    	// The access protection of the pages in the region.
    	Protect uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 940 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

        }
    
        /**
         * Returns the optional comment to add at the beginning of the properties file.
         */
        @Nullable
        @Optional
        @Input
        public String getComment() {
            return comment;
        }
    
        /**
         * Sets the optional comment to add at the beginning of the properties file.
         */
        public void setComment(@Nullable String comment) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top