Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 633 for subreg (0.26 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			if ctxt.Arch.Family == sys.I386 {
    				breg := byteswapreg(ctxt, &p.To)
    				if breg != REG_AX {
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    					subreg(&pp, z, breg)
    					ab.doasm(ctxt, cursym, &pp)
    					ab.Put1(0x87) // xchg lhs,bx
    					ab.asmando(ctxt, cursym, p, &p.From, reg[breg])
    				} else {
    					ab.Put1(byte(0x90 + reg[z])) // xchg lsh,ax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. internal/config/subnet/subnet.go

    package subnet
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"mime/multipart"
    	"net/http"
    	"time"
    
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    const (
    	respBodyLimit = 1 << 20 // 1 MiB
    
    	// LoggerWebhookName - subnet logger webhook target
    	LoggerWebhookName = "subnet"
    )
    
    // Upload given file content (payload) to specified URL
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 27 16:35:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. releasenotes/notes/duplicate-subset-names.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 20 09:31:05 UTC 2024
    - 155 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/subr.go

    	// types: structs parent the types they embed, and types parent their
    	// fields or methods. Our goal here is to find the shortest path to
    	// a field or method named s in the subtree rooted at t. To accomplish
    	// that, we iteratively perform depth-first searches of increasing depth
    	// until we either find the named field/method or exhaust the tree.
    	for d := 0; ; d++ {
    		if d > len(dotlist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_query_empty.txt

    chmod 0000 $WORK/gatekeeper/example.com/join/subpkg/@latest
    cp go.mod.orig go.mod
    ! go get example.com/join/subpkg
    stderr 'go: module example.com/join/subpkg: (invalid response from proxy ".+": invalid character .+|reading file://.*/gatekeeper/example.com/join/subpkg/@latest: .+)'
    
    -- go.mod.orig --
    module example.com/othermodule
    go 1.13
    -- $WORK/badproxy/example.com/join/subpkg/@v/list --
    v0.0.0-20190624000000-123456abcdef
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    stdout 'example.com/split/subpkg v1.1.0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_downgrade_missing.txt

    stderr '^go: example.com/m imports\n\texample.net/pkgadded/subpkg: cannot find module providing package example.net/pkgadded/subpkg$'
    ! stderr 'example.net/pkgadded v1\.2\.0'
    cmp go.mod.orig go.mod
    
    go get example.net/pkgadded@v1.0.0
    ! go list -deps -mod=readonly .
    stderr '^m.go:3:8: cannot find module providing package example\.net/pkgadded/subpkg: '
    
    -- go.mod --
    module example.com/m
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.net_pkgadded_v1.2.0.txt

    go 1.16
    -- .info --
    {"Version":"v1.2.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    package pkgadded
    -- subpkg/subpkg.go --
    // Package subpkg was added in v1.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 384 bytes
    - Viewed (0)
  9. internal/config/subnet/help.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package subnet
    
    import "github.com/minio/minio/internal/config"
    
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// HelpSubnet - provides help for subnet api key config
    	HelpSubnet = config.HelpKVS{
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 13 19:24:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_split-incompatible_v2.0.0+incompatible.txt

    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible
    -- .info --
    {"Version": "v2.0.0+incompatible"}
    -- subpkg/subpkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 299 bytes
    - Viewed (0)
Back to top