Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for namebuf (0.23 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	// that p will contain a complete header block.
    	if d.saveBuf.Len() == 0 {
    		d.buf = p
    	} else {
    		d.saveBuf.Write(p)
    		d.buf = d.saveBuf.Bytes()
    		d.saveBuf.Reset()
    	}
    
    	for len(d.buf) > 0 {
    		err = d.parseHeaderFieldRepr()
    		if err == errNeedMore {
    			// Extra paranoia, making sure saveBuf won't
    			// get too large. All the varint and string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. src/debug/dwarf/typeunit.go

    	name  string // Name of .debug_type section.
    	cache Type   // Cache the type, nil to start.
    }
    
    // Parse a .debug_types section.
    func (d *Data) parseTypes(name string, types []byte) error {
    	b := makeBuf(d, unknownFormat{}, name, 0, types)
    	for len(b.data) > 0 {
    		base := b.off
    		n, dwarf64 := b.unitLength()
    		if n != Offset(uint32(n)) {
    			b.error("type unit length overflow")
    			return b.err
    		}
    		hdroff := b.off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/x509/oid.go

    					bigVal = bigVal.Sub(bigVal, big.NewInt(80))
    				}
    				numBuf = bigVal.Append(numBuf, 10)
    				b.Write(numBuf)
    				numBuf = numBuf[:0]
    				val = 0
    				start = i + 1
    				overflow = false
    			}
    			continue
    		}
    		val <<= bitsPerByte
    		val |= uint64(curVal)
    		if valEnd {
    			if start == 0 {
    				if val < 80 {
    					b.Write(strconv.AppendUint(numBuf, val/40, 10))
    					b.WriteByte('.')
    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. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

                            // Using internal class to verify https://github.com/gradle/gradle/issues/17619
                            public static class Implementation implements ${nameOf<Plugin<*>>()}<${nameOf<Project>()}> {
                                @Override public void apply(${nameOf<Project>()} target) {}
                            }
                        }
                        """
                    )
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry.go

    			}
    			if b.err != nil {
    				return nil
    			}
    			var b1 buf
    			if fmt == formStrp {
    				b1 = makeBuf(b.dwarf, b.format, "str", 0, b.dwarf.str)
    			} else {
    				if len(b.dwarf.lineStr) == 0 {
    					b.error("DW_FORM_line_strp with no .debug_line_str section")
    					return nil
    				}
    				b1 = makeBuf(b.dwarf, b.format, "line_str", 0, b.dwarf.lineStr)
    			}
    			b1.skip(int(off))
    			val = b1.string()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  6. src/debug/dwarf/unit.go

    	// Count units.
    	nunit := 0
    	b := makeBuf(d, unknownFormat{}, "info", 0, d.info)
    	for len(b.data) > 0 {
    		len, _ := b.unitLength()
    		if len != Offset(uint32(len)) {
    			b.error("unit length overflow")
    			break
    		}
    		b.skip(int(len))
    		if len > 0 {
    			nunit++
    		}
    	}
    	if b.err != nil {
    		return nil, b.err
    	}
    
    	// Again, this time writing them down.
    	b = makeBuf(d, unknownFormat{}, "info", 0, d.info)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/reflect/export_test.go

    	}
    	m := ut.Methods()[0]
    	mname := t.(*rtype).nameOff(m.Name)
    	if *mname.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		panic("method name does not have pkgPath *string")
    	}
    	return mname.Bytes
    }
    
    type OtherPkgFields struct {
    	OtherExported   int
    	otherUnexported int
    }
    
    func IsExported(t Type) bool {
    	typ := t.(*rtype)
    	n := typ.nameOff(typ.t.Str)
    	return n.IsExported()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    	// versions of types with GC programs.
    	// These types need to be deallocated when the underlying object
    	// is freed.
    	TFlagUnrolledBitmap TFlag = 1 << 4
    )
    
    // NameOff is the offset to a name from moduledata.types.  See resolveNameOff in runtime.
    type NameOff int32
    
    // TypeOff is the offset to a type from moduledata.types.  See resolveTypeOff in runtime.
    type TypeOff int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/runtime/symtabinl.go

    	_ "unsafe" // for linkname
    )
    
    // inlinedCall is the encoding of entries in the FUNCDATA_InlTree table.
    type inlinedCall struct {
    	funcID    abi.FuncID // type of the called function
    	_         [3]byte
    	nameOff   int32 // offset into pclntab for name of called function
    	parentPc  int32 // position of an instruction whose source position is the call site (offset from entry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

            String extension = avs.getExtension() != null ? avs.getExtension() : avs.getType();
            return new DefaultIvyArtifactName(
                nameOf(target),
                avs.getType(),
                extension,
                avs.getClassifier()
            );
        }
    
        private static String nameOf(ComponentSelector target) {
            if (target instanceof ModuleComponentSelector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top