Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for entryAt (0.13 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	X_pad2   [2]byte
    	Xauxtype uint8 // Type of auxiliary entry
    }
    
    // Function Auxiliary Entry
    type XcoffAuxFcn64 struct {
    	Xlnnoptr uint64 // File pointer to line number
    	Xfsize   uint32 // Size of function in bytes
    	Xendndx  uint32 // Symbol table index of next entry
    	Xpad     uint8  // Unused
    	Xauxtype uint8  // Type of auxiliary entry
    }
    
    // csect Auxiliary Entry.
    type XcoffAuxCSect64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	cB := byte(0)
    	b := bucket[cB]
    
    	for i := len(sa) - 1; i >= 0; i-- {
    		j := int(sa[i])
    		if j >= 0 {
    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/crypto/des/des_test.go

    func TestWeakKeys(t *testing.T) {
    	for i, tt := range weakKeyTests {
    		var encrypt = func(in []byte) (out []byte) {
    			c := newCipher(tt.key)
    			out = make([]byte, len(in))
    			c.Encrypt(out, in)
    			return
    		}
    
    		// Encrypting twice with a DES weak
    		// key should reproduce the original input
    		result := encrypt(tt.in)
    		result = encrypt(result)
    
    		if !bytes.Equal(result, tt.in) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		}
    		return nil, err
    	}
    	volsInfo := make([]VolInfo, 0, len(entries))
    	for _, entry := range entries {
    		if !HasSuffix(entry, SlashSeparator) || !isValidVolname(pathutil.Clean(entry)) {
    			// Skip if entry is neither a directory not a valid volume name.
    			continue
    		}
    		volsInfo = append(volsInfo, VolInfo{
    			Name: pathutil.Clean(entry),
    		})
    	}
    	return volsInfo, nil
    }
    
    // StatVol - get volume info.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        def "throws NullPointerException when adding an entry with a null key to the property"() {
            when:
            property.put(null, (String) 'v')
            then:
            def ex = thrown NullPointerException
            ex.message == "Cannot add an entry with a null key to a property of type ${type().simpleName}."
        }
    
        def "throws NullPointerException when adding an entry with a null value to the property"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

          this.multimap = multimap;
        }
    
        @Override
        Iterator<Multiset.Entry<K>> entryIterator() {
          return new TransformedIterator<Map.Entry<K, Collection<V>>, Multiset.Entry<K>>(
              multimap.asMap().entrySet().iterator()) {
            @Override
            Multiset.Entry<K> transform(final Map.Entry<K, Collection<V>> backingEntry) {
              return new Multisets.AbstractEntry<K>() {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Multimaps.java

          this.multimap = multimap;
        }
    
        @Override
        Iterator<Multiset.Entry<K>> entryIterator() {
          return new TransformedIterator<Map.Entry<K, Collection<V>>, Multiset.Entry<K>>(
              multimap.asMap().entrySet().iterator()) {
            @Override
            Multiset.Entry<K> transform(final Map.Entry<K, Collection<V>> backingEntry) {
              return new Multisets.AbstractEntry<K>() {
                @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		print(" in goroutine ", goid)
    	}
    	print("\n")
    	tracepc := pc // back up to CALL instruction for funcline.
    	if pc > f.entry() {
    		tracepc -= sys.PCQuantum
    	}
    	file, line := funcline(f, tracepc)
    	print("\t", file, ":", line)
    	if pc > f.entry() {
    		print(" +", hex(pc-f.entry()))
    	}
    	print("\n")
    }
    
    func traceback(pc, sp, lr uintptr, gp *g) {
    	traceback1(pc, sp, lr, gp, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    // make entries. Here is the general flow
    // - Range over all the available buckets
    // - Check if a bucket has an entry in etcd backend
    // -- If no, make an entry
    // -- If yes, check if the entry matches local IP check if we
    //
    //	need to update the entry then proceed to update
    //
    // -- If yes, check if the IP of entry matches local IP.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		}
    		return
    	}
    
    	if c.q.Len() < c.capacity {
    		entry := &lruSessionCacheEntry{sessionKey, cs}
    		c.m[sessionKey] = c.q.PushFront(entry)
    		return
    	}
    
    	elem := c.q.Back()
    	entry := elem.Value.(*lruSessionCacheEntry)
    	delete(c.m, entry.sessionKey)
    	entry.sessionKey = sessionKey
    	entry.state = cs
    	c.q.MoveToFront(elem)
    	c.m[sessionKey] = elem
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top