Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 250 for worm (0.05 sec)

  1. cmd/api-errors.go

    		Description:    "The specified object does not have a ObjectLock configuration",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrObjectLocked: {
    		Code:           "InvalidRequest",
    		Description:    "Object is WORM protected and cannot be overwritten",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRetentionDate: {
    		Code:           "InvalidRequest",
    		Description:    "Date must be provided in ISO 8601 format",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    	work.stackRoots = allGsSnapshot()
    	work.nStackRoots = len(work.stackRoots)
    
    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    func length_8_64(text []byte, sa []int64, numLMS int) {
    	end := 0 // index of current LMS-substring end (0 indicates final LMS-substring)
    
    	// The encoding of N text bytes into a “length” word
    	// adds 1 to each byte, packs them into the bottom
    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. tests/query_test.go

    	type QueryResetItem struct {
    		ID   string `gorm:"type:varchar(5)"`
    		Name string
    	}
    
    	type QueryResetNullValue struct {
    		ID      int
    		Name    string     `gorm:"default:NULL"`
    		Flag    bool       `gorm:"default:NULL"`
    		Number1 int64      `gorm:"default:NULL"`
    		Number2 uint64     `gorm:"default:NULL"`
    		Number3 float64    `gorm:"default:NULL"`
    		Now     *time.Time `gorm:"default:NULL"`
    		Item1Id string
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// domain name.
    	Host string
    
    	// Form contains the parsed form data, including both the URL
    	// field's query parameters and the PATCH, POST, or PUT form data.
    	// This field is only available after ParseForm is called.
    	// The HTTP client ignores Form and uses Body instead.
    	Form url.Values
    
    	// PostForm contains the parsed form data from PATCH, POST
    	// or PUT body parameters.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    		} else {
    			pmain.Target = target
    			installAction = &work.Action{
    				Mode:    "test build",
    				Actor:   work.ActorFunc(work.BuildInstallFunc),
    				Deps:    []*work.Action{buildAction},
    				Package: pmain,
    				Target:  target,
    			}
    			runAction = installAction // make sure runAction != nil even if not running test
    		}
    	}
    
    	var vetRunAction *work.Action
    	if testC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    		if err != nil {
    			if inWorkspaceMode() {
    				if tooNew, ok := err.(*gover.TooNewError); ok && !strings.HasPrefix(cfg.CmdName, "work ") {
    					// Switching to a newer toolchain won't help - the go.work has the wrong version.
    					// Report this more specific error, unless we are a command like 'go work use'
    					// or 'go work sync', which will fix the problem after the caller sees the TooNewError
    					// and switches to a newer toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. tests/migrate_test.go

    	"math/rand"
    	"os"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"gorm.io/driver/postgres"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/logger"
    	"gorm.io/gorm/migrator"
    	"gorm.io/gorm/schema"
    	"gorm.io/gorm/utils"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestMigrate(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	// targetCPUFraction is the target CPU overhead for the scavenger.
    	targetCPUFraction float64
    
    	// sleepRatio is the ratio of time spent doing scavenging work to
    	// time spent sleeping. This is used to decide how long the scavenger
    	// should sleep for in between batches of work. It is set by
    	// critSleepController in order to maintain a CPU overhead of
    	// targetCPUFraction.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	}
    	work.tstart = startTime
    
    	// Check that there's no marking work remaining.
    	if work.full != 0 || work.markrootNext < work.markrootJobs {
    		print("runtime: full=", hex(work.full), " next=", work.markrootNext, " jobs=", work.markrootJobs, " nDataRoots=", work.nDataRoots, " nBSSRoots=", work.nBSSRoots, " nSpanRoots=", work.nSpanRoots, " nStackRoots=", work.nStackRoots, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top