Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for Id (0.03 sec)

  1. cmd/erasure-object.go

    			go func(i int, disk StorageAPI) {
    				defer wg.Done()
    
    				var (
    					fi  FileInfo
    					rfi RawFileInfo
    					err error
    				)
    
    				if opts.VersionID != "" {
    					// Read a specific version ID
    					fi, err = disk.ReadVersion(ctx, "", bucket, object, opts.VersionID, ropts)
    				} else {
    					// Read the latest version
    					rfi, err = disk.ReadXL(ctx, bucket, object, readData)
    					if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    		traceRelease(trace)
    	}
    
    	// Check that all Ps have finished deferred mcache flushes.
    	for _, p := range allp {
    		if fg := p.mcache.flushGen.Load(); fg != mheap_.sweepgen {
    			println("runtime: p", p.id, "flushGen", fg, "!= sweepgen", mheap_.sweepgen)
    			throw("p mcache not flushed")
    		}
    	}
    
    	gcBgMarkStartWorkers()
    
    	systemstack(gcResetMarkState)
    
    	work.stwprocs, work.maxprocs = gomaxprocs, gomaxprocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	ExitWindowsEx(flags uint32, reason uint32) (err error) = user32.ExitWindowsEx
    //sys	shGetKnownFolderPath(id *KNOWNFOLDERID, flags uint32, token Token, path **uint16) (ret error) = shell32.SHGetKnownFolderPath
    //sys	TerminateProcess(handle Handle, exitcode uint32) (err error)
    //sys	GetExitCodeProcess(handle Handle, exitcode *uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		Code:           "NoSuchUpload",
    		Description:    "The specified multipart upload does not exist. The upload ID may be invalid, or the upload may have been aborted or completed.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrInvalidVersionID: {
    		Code:           "InvalidArgument",
    		Description:    "Invalid version id specified",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrNoSuchVersion: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    			// Healing is 'true' when
    			// - if we found an unformatted disk (no 'format.json')
    			// - if we found healing tracker 'healing.bin'
    			dcinfo.Healing = errors.Is(err, errUnformattedDisk) || (s.Healing() != nil)
    			dcinfo.ID = diskID
    			return dcinfo, err
    		},
    	)
    
    	// Success.
    	return s, nil
    }
    
    // getDiskInfo returns given disk information.
    func getDiskInfo(drivePath string) (di disk.Info, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    	if err != nil {
    		return nil, "", err
    	}
    
    	// Create a sample format.json file
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    			return goTypesFixup(r)
    		}
    		error_(e.Pos(), "unrecognized Go type %s", t.Name)
    		return &Type{Size: 4, Align: 4, C: c("int")}
    	case *ast.SelectorExpr:
    		id, ok := t.X.(*ast.Ident)
    		if ok && id.Name == "unsafe" && t.Sel.Name == "Pointer" {
    			return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("void*")}
    		}
    	}
    	error_(e.Pos(), "Go type not supported in export: %s", gofmt(e))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (ListOptions) SwaggerDoc() map[string]string {
    	return map_ListOptions
    }
    
    var map_ManagedFieldsEntry = map[string]string{
    	"":            "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
    	"manager":     "Manager is an identifier of the workflow managing these fields.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation_test.go

    		if errs := ValidateCSINode(&csiNode, shorterIDValidationOption); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	nodeIDCase := storage.CSINode{
    		// node ID length > 128 but < 192
    		ObjectMeta: metav1.ObjectMeta{Name: "foo7"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         driverName,
    				NodeID:       longID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	// verify that Getppid() from the forked process reports our process id
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	childPpid := string(output)
    	ourPid := fmt.Sprintf("%d", Getpid())
    	if childPpid != ourPid {
    		t.Fatalf("Child process reports parent process id '%v', expected '%v'", childPpid, ourPid)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top