Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for beginning (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_verify_work.txt

    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    
    -- go.work --
    go 1.21
    
    use (
        ./a
        ./b
    )
    -- a/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_goroot_PATH.txt

    # https://go.dev/issue/51473: to avoid the need for tests to rely on
    # runtime.GOROOT, 'go test' 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 test .
    
    [!GOOS:plan9] env PATH=$WORK${/}bin
    [GOOS:plan9] env path=$WORK${/}bin
    go test .
    
    -- go.mod --
    module example
    
    go 1.19
    -- example_test.go --
    package example
    
    import (
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 795 bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface BuildTree extends BuildSession {}
    
        /**
         * These services are created once per {@code org.gradle.api.initialization.Settings} the beginning of the build invocation
         * These services are closed at the end of the build invocation.
         *
         * <p>{@link BuildTree} and parent scope services are visible to {@link Build} scope services, but not vice versa.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue36437.go

    // license that can be found in the LICENSE file.
    
    // Tests that when non-existent files are passed to the
    // compiler, such as in:
    //    go tool compile foo
    // we don't print the beginning position:
    //    foo:0: open foo: no such file or directory
    // but instead omit it and print out:
    //    open foo: no such file or directory
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top