Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,279 for g$ (0.06 sec)

  1. src/net/http/cgi/child_test.go

    	}
    	if g, e := req.Referer(), "elsewhere"; e != g {
    		t.Errorf("expected Referer %q; got %q", e, g)
    	}
    	if req.Header == nil {
    		t.Fatalf("unexpected nil Header")
    	}
    	if g, e := req.Header.Get("Foo-Bar"), "baz"; e != g {
    		t.Errorf("expected Foo-Bar %q; got %q", e, g)
    	}
    	if g, e := req.URL.String(), "http://example.com/path?a=b"; e != g {
    		t.Errorf("expected URL %q; got %q", e, g)
    	}
    	if g, e := req.FormValue("a"), "b"; e != g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 14 15:42:03 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoUnblock dt=2567 g=70 g_seq=3 stack=0
    GoStart dt=9 g=70 g_seq=4
    GoLabel dt=1 label_string=4
    GoBlock dt=329 reason_string=15 stack=5
    GoUnblock dt=97 g=70 g_seq=5 stack=0
    GoStart dt=5 g=70 g_seq=6
    GoLabel dt=3 label_string=2
    GoUnblock dt=1728 g=84 g_seq=3 stack=12
    GoBlock dt=3527 reason_string=15 stack=5
    GoStart dt=4132 g=114 g_seq=2
    GoStatus dt=28 g=115 m=18446744073709551615 gstatus=4
    GoUnblock dt=8 g=115 g_seq=1 stack=10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/..g", simplifyPath("/a/b/c/..g"));
        assertEquals("/a/b/g", simplifyPath("/a/b/c/./../g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/./g/."));
        assertEquals("/a/b/c/g/h", simplifyPath("/a/b/c/g/./h"));
        assertEquals("/a/b/c/h", simplifyPath("/a/b/c/g/../h"));
        assertEquals("/a/b/c/g;x=1/y", simplifyPath("/a/b/c/g;x=1/./y"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 11K bytes
    - Viewed (0)
  4. src/crypto/aes/aes_gcm.go

    		// Otherwise counter = GHASH(nonce)
    		gcmAesData(&g.productTable, nonce, &counter)
    		gcmAesFinish(&g.productTable, &tagMask, &counter, uint64(len(nonce)), uint64(0))
    	}
    
    	encryptBlockAsm(len(g.ks)/4-1, &g.ks[0], &tagMask[0], &counter[0])
    
    	var tagOut [gcmTagSize]byte
    	gcmAesData(&g.productTable, data, &tagOut)
    
    	ret, out := sliceForAppend(dst, len(plaintext)+g.tagSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_s390x.go

    	var hk gcmHashKey
    	c.Encrypt(hk[:], hk[:])
    	g := gcmAsm{
    		block:     c,
    		hashKey:   hk,
    		nonceSize: nonceSize,
    		tagSize:   tagSize,
    	}
    	if cpu.S390X.HasAESGCM {
    		g := gcmKMA{g}
    		return &g, nil
    	}
    	return &g, nil
    }
    
    func (g *gcmAsm) NonceSize() int {
    	return g.nonceSize
    }
    
    func (g *gcmAsm) Overhead() int {
    	return g.tagSize
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/graph_populator.go

    ) {
    	g := &graphPopulator{
    		graph: graph,
    	}
    
    	podHandler, _ := pods.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    g.addPod,
    		UpdateFunc: g.updatePod,
    		DeleteFunc: g.deletePod,
    	})
    
    	pvsHandler, _ := pvs.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    g.addPV,
    		UpdateFunc: g.updatePV,
    		DeleteFunc: g.deletePV,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/strconv/ftoa_test.go

    	// g conversion and zero suppression
    	{400, 'g', 2, "4e+02"},
    	{40, 'g', 2, "40"},
    	{4, 'g', 2, "4"},
    	{.4, 'g', 2, "0.4"},
    	{.04, 'g', 2, "0.04"},
    	{.004, 'g', 2, "0.004"},
    	{.0004, 'g', 2, "0.0004"},
    	{.00004, 'g', 2, "4e-05"},
    	{.000004, 'g', 2, "4e-06"},
    
    	{0, 'e', 5, "0.00000e+00"},
    	{0, 'f', 5, "0.00000"},
    	{0, 'g', 5, "0"},
    	{0, 'g', -1, "0"},
    	{0, 'x', 5, "0x0.00000p+00"},
    
    	{-1, 'e', 5, "-1.00000e+00"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. src/testing/iotest/reader_test.go

    		if err != nil {
    			break
    		}
    		if g, w := n, 1; g != w {
    			t.Errorf("Iteration #%d read %d bytes, want %d", i, g, w)
    		}
    		got.Write(b[:n])
    	}
    	if g, w := err, io.EOF; g != w {
    		t.Errorf("Unexpected error after reading all bytes\n\tGot:  %v\n\tWant: %v", g, w)
    	}
    	if g, w := got.String(), "Hello, World!"; g != w {
    		t.Errorf("Read mismatch\n\tGot:  %q\n\tWant: %q", g, w)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/graph.go

    		g.graph.RemoveEdge(edge)
    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // A fastpath for recomputeDestinationIndex_locked for "removing edge" case.
    func (g *Graph) removeEdgeFromDestinationIndex_locked(e graph.Edge) {
    	n := e.From()
    	// don't maintain indices for nodes with few edges
    	edgeCount := g.graph.Degree(n)
    	if edgeCount < g.destinationEdgeThreshold {
    		delete(g.destinationEdgeIndex, n.ID())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_ppc64x.go

    		h2 = byteorder.BeUint64(hle[8:])
    	}
    	byteorder.BePutUint64(hle[:8], h1)
    	byteorder.BePutUint64(hle[8:], h2)
    	gcmInit(&g.productTable, hle)
    
    	return g, nil
    }
    
    func (g *gcmAsm) NonceSize() int {
    	return g.nonceSize
    }
    
    func (g *gcmAsm) Overhead() int {
    	return g.tagSize
    }
    
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top