Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for opload (0.29 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    				if eh > 1 {
    					c.ctxt.Diag("illegal EH field\n%v", p)
    				}
    				o1 = AOP_RRRI(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg), uint32(eh))
    			} else {
    				o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    			}
    		default:
    			o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    		}
    	case 46: /* plain op */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVD, C_AACON2, C_NONE, C_NONE, C_RSP, C_NONE, 4, 8, REGFROM, NOTUSETMP, 0},
    
    	/* load long effective stack address (load int32 offset and add) */
    	{AMOVD, C_LACON, C_NONE, C_NONE, C_RSP, C_NONE, 34, 8, REGSP, LFROM, 0},
    
    	// Load a large constant into a vector register.
    	{AVMOVS, C_ADDR, C_NONE, C_NONE, C_VREG, C_NONE, 65, 12, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	// 1. Initiate 2 uploads for the same object
    	// 2. Upload 2 parts for the second upload
    	// 3. Abort the second upload.
    	// 4. Abort the first upload.
    	// This will test abort upload when there are more than one upload IDs
    	// and the case where there is only one upload ID.
    
    	// construct HTTP request to initiate a NewMultipart upload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // this.super()
                    _ALOAD(0);
                    _INVOKESPECIAL(OBJECT_TYPE, "<init>", RETURN_VOID);
    
                    // this.name = name
                    _ALOAD(0);
                    _ALOAD(1);
                    _PUTFIELD(generatedType, NAME_FIELD, STRING_TYPE);
    
                    // this.init_method()
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    				return
    			}
    			// push the obtained upload ID from the response into the array.
    			testUploads.Lock()
    			testUploads.uploads = append(testUploads.uploads, multipartResponse.UploadID)
    			testUploads.Unlock()
    		}()
    	}
    	// Wait till all go routines finishes execution.
    	wg.Wait()
    	// Validate the upload ID by an attempt to list parts using it.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    // (replace, exclude).
    func PackagesAndErrorsOutsideModule(ctx context.Context, opts PackageOpts, args []string) ([]*Package, error) {
    	if !modload.ForceUseModules {
    		panic("modload.ForceUseModules must be true")
    	}
    	if modload.RootMode != modload.NoRoot {
    		panic("modload.RootMode must be NoRoot")
    	}
    
    	// Check that the arguments satisfy syntactic constraints.
    	var version string
    	var firstPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	"response-content-disposition": xhttp.ContentDisposition,
    }
    
    const (
    	compressionAlgorithmV1 = "golang/snappy/LZ77"
    	compressionAlgorithmV2 = "klauspost/compress/s2"
    
    	// When an upload exceeds encryptBufferThreshold ...
    	encryptBufferThreshold = 1 << 20
    	// add an input buffer of this size.
    	encryptBufferSize = 1 << 20
    
    	// minCompressibleSize is the minimum size at which we enable compression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

    #   KUBE_ROOT
    #   <Various vars set in config file>
    function kube-up() {
      kube::util::ensure-temp-dir
      detect-project
    
      load-or-gen-kube-basicauth
      load-or-gen-kube-bearertoken
    
      # Make sure we have the tar files staged on Google Storage
      find-release-tars
      upload-tars
    
      # ensure that environmental variables specifying number of migs to create
      set_num_migs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    	"cmd/internal/buildid"
    	"cmd/internal/quoted"
    	"cmd/internal/sys"
    )
    
    const DefaultCFlags = "-O2 -g"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    	op_LAEY    uint32 = 0xE375 // FORMAT_RXY1       LOAD ADDRESS EXTENDED
    	op_LAM     uint32 = 0x9A00 // FORMAT_RS1        LOAD ACCESS MULTIPLE
    	op_LAMY    uint32 = 0xEB9A // FORMAT_RSY1       LOAD ACCESS MULTIPLE
    	op_LAN     uint32 = 0xEBF4 // FORMAT_RSY1       LOAD AND AND (32)
    	op_LANG    uint32 = 0xEBE4 // FORMAT_RSY1       LOAD AND AND (64)
    	op_LAO     uint32 = 0xEBF6 // FORMAT_RSY1       LOAD AND OR (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top