Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for clearFlags (0.25 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

         */
        @Override
        public CommonServerMessageBlockRequest split () {
            ServerMessageBlock2Request<?> n = getNext();
            if ( n != null ) {
                setNext(null);
                n.clearFlags(SMB2_FLAGS_RELATED_OPERATIONS);
            }
            return n;
        }
    
    
        /**
         * 
         * @param next
         */
        public void setNext ( ServerMessageBlock2Request<?> next ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/cover/func.go

    // file to write ("" means to write to standard output). The function reads the profile and produces
    // as output the coverage data broken down by function, like this:
    //
    //	fmt/format.go:30:	init			100.0%
    //	fmt/format.go:57:	clearflags		100.0%
    //	...
    //	fmt/scan.go:1046:	doScan			100.0%
    //	fmt/scan.go:1075:	advance			96.2%
    //	fmt/scan.go:1119:	doScanf			96.8%
    //	total:		(statements)			91.9%
    
    func funcOutput(profile, outputFile string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/fmt/format.go

    	// avoids padding at the end of the struct on 32 bit architectures.
    	intbuf [68]byte
    }
    
    func (f *fmt) clearflags() {
    	f.fmtFlags = fmtFlags{}
    	f.wid = 0
    	f.prec = 0
    }
    
    func (f *fmt) init(buf *buffer) {
    	f.buf = buf
    	f.clearflags()
    }
    
    // writePadding generates n bytes of padding.
    func (f *fmt) writePadding(n int) {
    	if n <= 0 { // No padding bytes needed.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/fmt/print.go

    		if p.panicking {
    			// Nested panics; the recursion in printArg cannot succeed.
    			panic(err)
    		}
    
    		oldFlags := p.fmt.fmtFlags
    		// For this output we want default behavior.
    		p.fmt.clearflags()
    
    		p.buf.writeString(percentBangString)
    		p.buf.writeRune(verb)
    		p.buf.writeString(panicString)
    		p.buf.writeString(method)
    		p.buf.writeString(" method: ")
    		p.panicking = true
    		p.printArg(err, 'v')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * 
         * @param flag
         */
        public final void addFlags ( int flag ) {
            this.flags |= flag;
        }
    
    
        /**
         * 
         * @param flag
         */
        public final void clearFlags ( int flag ) {
            this.flags &= ~flag;
        }
    
    
        /**
         * @return the mid
         */
        @Override
        public final long getMid () {
            return this.mid;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git_test.go

    		if tt.repo == gitrepo1 {
    			// Clear hashes.
    			clearTags := []Tag{}
    			for _, tag := range tt.tags {
    				clearTags = append(clearTags, Tag{tag.Name, ""})
    			}
    			tags := tt.tags
    			for _, tt.repo = range altRepos() {
    				if strings.Contains(tt.repo, "Git") {
    					tt.tags = tags
    				} else {
    					tt.tags = clearTags
    				}
    				t.Run(path.Base(tt.repo)+"/"+tt.prefix, runTest(tt))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top