Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 339 for Whatever (0.12 sec)

  1. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

     * @since 4.3
     */
    @SupportsKotlinAssignmentOverloading
    public interface Property<T> extends Provider<T>, HasConfigurableValue, SupportsConvention {
        /**
         * Sets the value of the property to the given value, replacing whatever value the property already had.
         *
         * <p>
         * This method can also be used to discard the value of the property, by passing it {@code null}. When the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. test/typeparam/issue52228.go

    // run
    
    // Copyright 2022 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.
    
    package main
    
    type SomeInterface interface {
    	Whatever()
    }
    
    func X[T any]() T {
    	var m T
    
    	// for this example, this block should never run
    	if _, ok := any(m).(SomeInterface); ok {
    		var dst SomeInterface
    		_, _ = dst.(T)
    		return dst.(T)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 17:06:19 UTC 2022
    - 476 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         * Restarts the lifecycle of this build.
         */
        void resetModel();
    
        /**
         * Runs whatever work is required prior to discarding the model for this build. This is called prior to calling {@link #resetModel()}.
         */
        ExecutionResult<Void> beforeModelReset();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. test/fixedbugs/bug344.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    func main() {
    	// invalid use of goto.
    	// do whatever you like, just don't crash.
    	i := 42
    	a := []*int{&i, &i, &i, &i}
    	x := a[0]
    	goto start  // ERROR "jumps into block"
    	z := 1
    	_ = z
    	for _, x = range a {	// GCCGO_ERROR "block"
    	start:
    		fmt.Sprint(*x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 466 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_doc_path.txt

    # cmd/doc should use GOROOT to locate the 'go' command,
    # not use whatever is in $PATH.
    
    # Remove 'go' from $PATH. (It can still be located via $GOROOT/bin/go, and the
    # test script's built-in 'go' command still knows where to find it.)
    env PATH=''
    [GOOS:plan9] env path=''
    
    go doc p.X
    
    -- go.mod --
    module example
    
    go 1.19
    
    require example.com/p v0.1.0
    
    replace example.com/p => ./pfork
    -- example.go --
    package example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 537 bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/testdata/versions/test.go

    // (add 'b' or 'i' to distinguish between binary and
    // indexed format starting with 1.11 as long as both
    // formats are supported).
    //
    // Make sure this source is extended such that it exercises
    // whatever export format change has taken place.
    
    package test
    
    // Any release before and including Go 1.7 didn't encode
    // the package for a blank struct field.
    type BlankField struct {
    	_ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 13 04:39:18 UTC 2018
    - 918 bytes
    - Viewed (0)
  8. src/time/sys_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"errors"
    	"syscall"
    )
    
    // for testing: whatever interrupts a sleep
    func interrupt() {
    }
    
    func open(name string) (uintptr, error) {
    	fd, err := syscall.Open(name, syscall.O_RDONLY, 0)
    	if err != nil {
    		// This condition solves issue https://go.dev/issue/50248
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:19:07 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         * <p>
         * Note that the provided configuration action only applies incremental modifications on top of whatever permission
         * the user has at the moment and that the default values permissions start out are different for files and directories
         * (see {@link UserClassFilePermissions}).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/time/sys_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package time
    
    import (
    	"errors"
    	"syscall"
    )
    
    // for testing: whatever interrupts a sleep
    func interrupt() {
    	// cannot predict pid, don't want to kill group
    }
    
    func open(name string) (uintptr, error) {
    	fd, err := syscall.Open(name, syscall.O_RDONLY)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1016 bytes
    - Viewed (0)
Back to top