Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for COMMIT (0.37 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Unless `keyring-format` is specified, this command will generate *both* the binary version and the ASCII-armored file.
    Use this option to choose the preferred format.
    You should only pick one for your project.
    
    It's a good idea to commit this file to VCS (as long as you trust your VCS).
    If you use git and use the binary version, make sure to make it treat this file as binary, by adding this to your `.gitattributes` file:
    
    ----
    *.gpg           binary
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/runtime/map.go

    	}
    	oldbuckets := h.buckets
    	newbuckets, nextOverflow := makeBucketArray(t, h.B+bigger, nil)
    
    	flags := h.flags &^ (iterator | oldIterator)
    	if h.flags&iterator != 0 {
    		flags |= oldIterator
    	}
    	// commit the grow (atomic wrt gc)
    	h.B += bigger
    	h.flags = flags
    	h.oldbuckets = oldbuckets
    	h.buckets = newbuckets
    	h.nevacuate = 0
    	h.noverflow = 0
    
    	if h.extra != nil && h.extra.overflow != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	MOVQ	(p_wbBuf+wbBuf_next)(R13), R12	// original next position
    	ADDQ	R11, R12			// new next position
    	// Is the buffer full?
    	CMPQ	R12, (p_wbBuf+wbBuf_end)(R13)
    	JA	flush
    	// Commit to the larger buffer.
    	MOVQ	R12, (p_wbBuf+wbBuf_next)(R13)
    	// Make return value (the original next position)
    	SUBQ	R11, R12
    	MOVQ	R12, R11
    	// Restore registers.
    	MOVQ	96(SP), R12
    	MOVQ	104(SP), R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    			}
    			return res, osErrToFileErr(err)
    		}
    		diskHealthCheckOK(ctx, err)
    	}
    
    	if contextCanceled(ctx) {
    		return res, ctx.Err()
    	}
    
    	// Commit meta-file
    	if err = renameAll(srcFilePath, dstFilePath, skipParent); err != nil {
    		if legacyPreserved {
    			// Any failed rename calls un-roll previous transaction.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// direct dependencies. (For example, the direct dependency might be a very
    		// stable codebase that predates modules and thus lacks a go.mod file, or
    		// the author of the direct dependency may have forgotten to commit a change
    		// to the go.mod file, or may have made an erroneous hand-edit that causes
    		// it to be untidy.)
    		//
    		// Promoting an indirect dependency to a root adds the next layer of its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top