Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 372 for wbMove (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/amd64/include -m64 /tmp/amd64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build amd64 && linux
    
    package unix
    
    const (
    	SYS_READ                    = 0
    	SYS_WRITE                   = 1
    	SYS_OPEN                    = 2
    	SYS_CLOSE                   = 3
    	SYS_STAT                    = 4
    	SYS_FSTAT                   = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/infer.go

    				// parameter declared by the current function and use it in the same
    				// function signature; hence we don't need to Unalias before the
    				// .(*TypeParam) type assertion above.
    				untyped = append(untyped, i)
    			}
    		}
    	}
    
    	if traceInference {
    		inferred := u.inferred(tparams)
    		u.tracef("=> %s ➞ %s\n", tparams, inferred)
    	}
    
    	// --- 2 ---
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    					break
    				}
    				// This G has been in a mark assist *and running on its P* since the start
    				// of the trace.
    				fallthrough
    			case handleSweep(r):
    				// This P has been in sweep (or mark assist, from above) in the start of the trace.
    				//
    				// We don't need to do anything if UtilPerProc is set. If we get an event like
    				// this for a running P, it must show up the first time a P is mentioned. Therefore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/s390x/include -fsigned-char /tmp/s390x/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build s390x && linux
    
    package unix
    
    const (
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    	SYS_CLOSE                   = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    			cap:  10,
    		},
    		{
    			name: "above maxCapacity",
    			args: args{v: reflect.ValueOf([]example.Pod{}), maxCapacity: 10, sizes: []int{1, 12}},
    			cap:  10,
    		},
    		{
    			name: "takes max",
    			args: args{v: reflect.ValueOf([]example.Pod{}), maxCapacity: 10, sizes: []int{8, 4}},
    			cap:  8,
    		},
    		{
    			name: "with existing capacity above max",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/mips64/include /tmp/mips64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64 && linux
    
    package unix
    
    const (
    	SYS_READ                    = 5000
    	SYS_WRITE                   = 5001
    	SYS_OPEN                    = 5002
    	SYS_CLOSE                   = 5003
    	SYS_STAT                    = 5004
    	SYS_FSTAT                   = 5005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/sparc64/include /tmp/sparc64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build sparc64 && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL         = 0
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The DSL exposed by the plugin exposes a container for defining a set of environments.
    Each environment the user configures has an arbitrary but declarative name and is represented with its own DSL configuration block.
    The example above instantiates a development, staging, and production environment, including its respective URL.
    
    Each environment must have a data representation in code to capture the values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    				// parameter declared by the current function and use it in the same
    				// function signature; hence we don't need to Unalias before the
    				// .(*TypeParam) type assertion above.
    				untyped = append(untyped, i)
    			}
    		}
    	}
    
    	if traceInference {
    		inferred := u.inferred(tparams)
    		u.tracef("=> %s ➞ %s\n", tparams, inferred)
    	}
    
    	// --- 2 ---
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/go/types/instantiate.go

    	// Constraints with empty type sets were already excluded above.
    	if !Ti.typeSet().hasTerms() {
    		return checkComparability() // nothing to do
    	}
    
    	// If V is itself an interface, each of its possible types must be in the set
    	// of T types (i.e., the V type set must be a subset of the T type set).
    	// Interfaces V with empty type sets were already excluded above.
    	if Vi != nil {
    		if !Vi.typeSet().subsetOf(Ti.typeSet()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top