Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for setEnum (0.18 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

                return { connection } as ConnectCompletion
            }
        }
    
        def createAddress(int i) {
            new Address() {
                int getNum() { i }
    
                String getDisplayName() { getNum() }
            }
        }
    
        def createConnector() {
            def connector = Spy(DefaultDaemonConnector, constructorArgs: [
                    new EmbeddedDaemonRegistry(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadmacho/ldmacho.go

    			l.SetAttrDuplicateOK(s, true)
    		}
    		machsym.sym = s
    		if machsym.sectnum == 0 { // undefined
    			continue
    		}
    		if uint32(machsym.sectnum) > c.seg.nsect {
    			return errorf("reference to invalid section %d", machsym.sectnum)
    		}
    
    		sect := &c.seg.sect[machsym.sectnum-1]
    		bld := l.MakeSymbolUpdater(s)
    		outer := sect.sym
    		if outer == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  3. src/crypto/x509/oid.go

    	firstComponent.Add(firstComponent, second)
    
    	der := appendBase128BigInt(make([]byte, 0, 32), firstComponent)
    
    	for nextComponentExists {
    		var strNum string
    		strNum, oid, nextComponentExists = strings.Cut(oid, ".")
    		b, ok := big.NewInt(0).SetString(strNum, 10)
    		if !ok {
    			return errInvalidOID
    		}
    		der = appendBase128BigInt(der, b)
    	}
    
    	o.der = der
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

            return index;
        }
    
        public long getTookMs() {
            return tookMs;
        }
    
        public List<String> getWords() {
            return words;
        }
    
        public int getNum() {
            return num;
        }
    
        public long getTotal() {
            return total;
        }
    
        public List<SuggestItem> getItems() {
            return items;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

            return index;
        }
    
        public long getTookMs() {
            return tookMs;
        }
    
        public List<String> getWords() {
            return words;
        }
    
        public int getNum() {
            return num;
        }
    
        public long getTotal() {
            return total;
        }
    
        public List<SuggestItem> getItems() {
            return items;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/time/format.go

    		case stdHour:
    			hour, value, err = getnum(value, false)
    			if hour < 0 || 24 <= hour {
    				rangeErrString = "hour"
    			}
    		case stdHour12, stdZeroHour12:
    			hour, value, err = getnum(value, std == stdZeroHour12)
    			if hour < 0 || 12 < hour {
    				rangeErrString = "hour"
    			}
    		case stdMinute, stdZeroMinute:
    			min, value, err = getnum(value, std == stdZeroMinute)
    			if min < 0 || 60 <= min {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    func getCompressedOffsets(oi ObjectInfo, offset int64, decrypt func([]byte) ([]byte, error)) (compressedOffset int64, partSkip int64, firstPart int, decryptSkip int64, seqNum uint32) {
    	var skipLength int64
    	var cumulativeActualSize int64
    	var firstPartIdx int
    	for i, part := range oi.Parts {
    		cumulativeActualSize += part.ActualSize
    		if cumulativeActualSize <= offset {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/internal/xcoff/file.go

    	// Read relocations
    	// Only for .data or .text section
    	for sectNum, sect := range f.Sections {
    		if sect.Type != STYP_TEXT && sect.Type != STYP_DATA {
    			continue
    		}
    		if sect.Relptr == 0 {
    			continue
    		}
    		c := saferio.SliceCap[Reloc](uint64(sect.Nreloc))
    		if c < 0 {
    			return nil, fmt.Errorf("too many relocs (%d) for section %d", sect.Nreloc, sectNum)
    		}
    		sect.Relocs = make([]Reloc, 0, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/debug/pe/symbol.go

    // for more on what's going on here.
    type COFFSymbolAuxFormat5 struct {
    	Size           uint32
    	NumRelocs      uint16
    	NumLineNumbers uint16
    	Checksum       uint32
    	SecNum         uint16
    	Selection      uint8
    	_              [3]uint8 // padding
    }
    
    // These constants make up the possible values for the 'Selection'
    // field in an AuxFormat5.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    			sect = f.Sections[pesym.SectionNumber-1]
    			if _, found := state.sectsyms[sect]; !found {
    				return nil, fmt.Errorf("%s: %v: missing sect.sym", pn, s)
    			}
    		} else {
    			return nil, fmt.Errorf("%s: %v: sectnum < 0!", pn, s)
    		}
    
    		if sect == nil {
    			return nil, nil
    		}
    
    		// Check for COMDAT symbol.
    		if sz, ok1 := state.comdats[uint16(pesym.SectionNumber-1)]; ok1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top