Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for writeAt (0.34 sec)

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

    	if elf64 {
    		out.Write32(uint32(off))
    		out.Write8(info)
    		out.Write8(uint8(other))
    		out.Write16(uint16(shndx))
    		out.Write64(uint64(addr))
    		out.Write64(uint64(size))
    		symSize += ELF64SYMSIZE
    	} else {
    		out.Write32(uint32(off))
    		out.Write32(uint32(addr))
    		out.Write32(uint32(size))
    		out.Write8(info)
    		out.Write8(uint8(other))
    		out.Write16(uint16(shndx))
    		symSize += ELF32SYMSIZE
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/asm.go

    	addend := r.Xadd
    
    	out.Write64(uint64(sectoff))
    
    	elfsym := ld.ElfSymForReloc(ctxt, r.Xsym)
    	out.Write32(uint32(elfsym))
    	out.Write8(0)
    	out.Write8(0)
    	out.Write8(0)
    	switch r.Type {
    	default:
    		return false
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch r.Size {
    		case 4:
    			out.Write8(uint8(elf.R_MIPS_32))
    		case 8:
    			out.Write8(uint8(elf.R_MIPS_64))
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/mdo/writer-stax.vm

        } //-- void setStringFormatter(InputLocation.StringFormatter)
    
    #end
        /**
         * Method write.
         *
         * @param writer a writer object
         * @param ${rootLcapName} a ${root.name} object
         * @throws IOException IOException if any
         */
        public void write(Writer writer, ${root.name} ${rootLcapName}) throws IOException, XMLStreamException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/s390x/asm.go

    			out.Write64(uint64(elf.R_390_TLS_LE64) | uint64(elfsym)<<32)
    		}
    	case objabi.R_TLS_IE:
    		switch siz {
    		default:
    			return false
    		case 4:
    			out.Write64(uint64(elf.R_390_TLS_IEENT) | uint64(elfsym)<<32)
    		}
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch siz {
    		default:
    			return false
    		case 4:
    			out.Write64(uint64(elf.R_390_32) | uint64(elfsym)<<32)
    		case 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

        writeMedium(frame, 8 + expectedData.size)
        frame.writeByte(TYPE_GOAWAY)
        frame.writeByte(FLAG_NONE)
        frame.writeInt(0) // connection-scope
        frame.writeInt(0) // never read any stream!
        frame.writeInt(expectedError.httpCode)
        frame.write(expectedData.toByteArray())
    
        // Check writer sends the same bytes.
        assertThat(sendGoAway(0, expectedError, expectedData.toByteArray())).isEqualTo(frame)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm/asm.go

    			out.Write32(uint32(elf.R_ARM_REL32) | uint32(elfsym)<<8)
    		} else {
    			return false
    		}
    	case objabi.R_CALLARM:
    		if siz == 4 {
    			relocs := ldr.Relocs(s)
    			r := relocs.At(ri)
    			if r.Add()&0xff000000 == 0xeb000000 { // BL // TODO: using r.Add here is bad (issue 19811)
    				out.Write32(uint32(elf.R_ARM_CALL) | uint32(elfsym)<<8)
    			} else {
    				out.Write32(uint32(elf.R_ARM_JUMP24) | uint32(elfsym)<<8)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            server.expectGet("/$uniqueFileName", resourceFile)
            buildFile << """
                task uriText {
                    doLast {
                        print resources.text.fromUri("${server.uri}/$uniqueFileName").asString()
                    }
                }
            """
    
            when:
            succeeds 'uriText'
    
            then:
            def resource = findFile(cacheDir, "resources-*/**/$uniqueFileName")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pkg/kubelet/logs/container_log_manager_test.go

    		"the length doesn't matter",
    	}
    	for i := range testLogs {
    		f, err := os.Create(filepath.Join(dir, testLogs[i]))
    		require.NoError(t, err)
    		_, err = f.Write([]byte(testContent[i]))
    		require.NoError(t, err)
    		f.Close()
    	}
    	testContainers := []*critest.FakeContainer{
    		{
    			ContainerStatus: runtimeapi.ContainerStatus{
    				Id:      "container-not-need-rotate",
    				State:   runtimeapi.ContainerState_CONTAINER_RUNNING,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticdata/data.go

    		base.Fatalf("InitConst c op %v", c.Op())
    	}
    	s := n.Linksym()
    	switch u := c.Val(); u.Kind() {
    	case constant.Bool:
    		i := int64(obj.Bool2int(constant.BoolVal(u)))
    		s.WriteInt(base.Ctxt, noff, wid, i)
    
    	case constant.Int:
    		s.WriteInt(base.Ctxt, noff, wid, ir.IntVal(c.Type(), u))
    
    	case constant.Float:
    		f, _ := constant.Float64Val(u)
    		switch c.Type().Kind() {
    		case types.TFLOAT32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/sym.go

    	return ctxt.LookupInit(name, func(s *LSym) {
    		s.Size = 16
    		if ctxt.Arch.ByteOrder == binary.LittleEndian {
    			s.WriteInt(ctxt, 0, 8, lo)
    			s.WriteInt(ctxt, 8, 8, hi)
    		} else {
    			s.WriteInt(ctxt, 0, 8, hi)
    			s.WriteInt(ctxt, 8, 8, lo)
    		}
    		s.Type = objabi.SRODATA
    		s.Set(AttrLocal, true)
    		s.Set(AttrContentAddressable, true)
    		ctxt.constSyms = append(ctxt.constSyms, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top