Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for writeNL (2.15 sec)

  1. src/cmd/internal/obj/ppc64/doc.go

    The purpose of this directive is to improve performance for cases like loops
    where better alignment (8 or 16 instead of 4) might be helpful. This directive
    exists in PPC64 assembler and is frequently used by PPC64 assembler writers.
    
    PCALIGN $16
    PCALIGN $8
    
    By default, functions in Go are aligned to 16 bytes, as is the case in all
    other compilers for PPC64. If there is a PCALIGN directive requesting alignment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. api/go1.8.txt

    pkg net/http, var ErrServerClosed error
    pkg net/http, var NoBody noBody
    pkg net/mail, func ParseDate(string) (time.Time, error)
    pkg net, method (*Buffers) Read([]uint8) (int, error)
    pkg net, method (*Buffers) WriteTo(io.Writer) (int64, error)
    pkg net, method (*Resolver) LookupAddr(context.Context, string) ([]string, error)
    pkg net, method (*Resolver) LookupCNAME(context.Context, string) (string, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  3. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

        val builder = MockResponse.Builder().body("ABC")
        assertThat(headersToList(builder)).containsExactly("Content-Length: 3")
        val response = builder.build()
        val body = Buffer()
        response.body!!.writeTo(body)
        assertThat(body.readUtf8()).isEqualTo("ABC")
      }
    
      @Test
      fun mockResponseAddHeader() {
        val builder =
          MockResponse.Builder()
            .clearHeaders()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// retrying the update until success if there is index conflict.
    	// Note that object passed to tryUpdate may change across invocations of tryUpdate() if
    	// other writers are simultaneously updating it, so tryUpdate() needs to take into account
    	// the current contents of the object when deciding how the update object should look.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        BloomFilter<byte[]> bf = BloomFilter.create(funnel, 100);
        for (int i = 0; i < 100; i++) {
          bf.put(Ints.toByteArray(i));
        }
    
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        bf.writeTo(out);
    
        BloomFilter<byte[]> read =
            BloomFilter.readFrom(new ByteArrayInputStream(out.toByteArray()), funnel);
        assertThat(read).isEqualTo(bf);
        assertThat(read.expectedFpp()).isGreaterThan(0);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/runtime/pprof/proto_test.go

    // (including a fake mapping), and their HasFunctions bits
    // are set correctly.
    func TestFakeMapping(t *testing.T) {
    	var buf bytes.Buffer
    	if err := Lookup("heap").WriteTo(&buf, 0); err != nil {
    		t.Fatalf("failed to write heap profile: %v", err)
    	}
    	prof, err := profile.Parse(&buf)
    	if err != nil {
    		t.Fatalf("failed to parse the generated profile data: %v", err)
    	}
    	t.Logf("Profile: %s", prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. internal/config/config.go

    			b.WriteString(ep.Value)
    			b.WriteString(KvNewline)
    		}
    	}
    }
    
    // WriteTo writes the string representation of the configuration to the given
    // builder. When off is true, adds a comment character before the config system
    // output. It also ignores values when empty and deprecated.
    func (cs *SubsysInfo) WriteTo(b *strings.Builder, off bool) {
    	cs.AddEnvString(b)
    	if off {
    		b.WriteString(KvComment)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_riscv64.s

    TEXT runtime·closefd(SB),NOSPLIT|NOFRAME,$0-12
    	MOVW	fd+0(FP), A0
    	MOV	$SYS_close, A7
    	ECALL
    	MOV	$-4096, T0
    	BGEU	T0, A0, 2(PC)
    	MOV	$-1, A0
    	MOVW	A0, ret+8(FP)
    	RET
    
    // func write1(fd uintptr, p unsafe.Pointer, n int32) int32
    TEXT runtime·write1(SB),NOSPLIT|NOFRAME,$0-28
    	MOV	fd+0(FP), A0
    	MOV	p+8(FP), A1
    	MOVW	n+16(FP), A2
    	MOV	$SYS_write, A7
    	ECALL
    	MOVW	A0, ret+24(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    === Java
    
    Gradle runs on the Java Virtual Machine (JVM). Java performance improvements often benefit Gradle.
    For the best Gradle performance, use the latest version of Java.
    
    === Plugins
    
    Plugin writers continuously improve the performance of their plugins.
    If you're using an old version of a plugin, you're missing out on the benefits of that work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    			err = closeErr
    		}
    	}()
    	if err := hf.Truncate(int64(len(hash))); err != nil {
    		return err
    	}
    	if _, err := hf.WriteAt([]byte(hash), 0); err != nil {
    		return err
    	}
    	return nil
    }
    
    // makeDirsReadOnly makes a best-effort attempt to remove write permissions for dir
    // and its transitive contents.
    func makeDirsReadOnly(dir string) {
    	type pathMode struct {
    		path string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top