Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for wr (0.03 sec)

  1. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        @Override
        public WeakReference<Object> call() {
          WeakReference<Object> wr =
              new FinalizableWeakReference<Object>(new Integer(23), frq) {
                @Override
                public void finalizeReferent() {
                  finalized.release();
                }
              };
          return wr;
        }
      }
    
      public void testUnloadableInStaticFieldIfClosed() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_test.go

    func TestAllThreadsSyscallBlockedSyscall(t *testing.T) {
    	if _, _, err := syscall.AllThreadsSyscall(syscall.SYS_PRCTL, PR_SET_KEEPCAPS, 0, 0); err == syscall.ENOTSUP {
    		t.Skip("AllThreadsSyscall disabled with cgo")
    	}
    
    	rd, wr, err := os.Pipe()
    	if err != nil {
    		t.Fatalf("unable to obtain a pipe: %v", err)
    	}
    
    	// Perform a blocking read on the pipe.
    	var wg sync.WaitGroup
    	ready := make(chan bool)
    	wg.Add(1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    00000220  af c4 cf c2 ed 90 99 5f  58 cb 3b 74 16 03 01 00  |......._X.;t....|
    00000230  86 0f 00 00 82 00 80 59  18 58 aa 18 70 84 a3 26  |.......Y.X..p..&|
    00000240  8c 1d 77 52 a7 2d 00 e5  00 dc 24 1c f6 9b 9f 63  |..wR.-....$....c|
    00000250  c8 84 8b dc e7 61 78 9c  28 0d 4c 3a 1e 5f a7 ce  |.....ax.(.L:._..|
    00000260  35 17 1c b1 de e0 01 32  35 6f 85 59 22 73 50 2a  |5......25o.Y"sP*|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-ECDSA

    000002f0  c1 2d 2f 4e d2 25 14 96  24 c6 18 97 82 93 1c 1b  |.-/N.%..$.......|
    00000300  b4 ca 77 8b 17 7c cf 08  ca 06 e2 ef f3 97 6a 31  |..w..|........j1|
    00000310  88 aa 46 a2 d3 7b 65 56  e2 77 72 df              |..F..{eV.wr.|
    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 40 b8 19 a7 e2 35  |..........@....5|
    00000010  8a be 5f 4c 91 d2 db 3f  f3 42 90 8e b5 7f ea f7  |.._L...?.B......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug.go

    			Labels:       c.proxy.Labels,
    			Metadata:     c.proxy.Metadata,
    			Locality:     c.proxy.Locality,
    			Watches:      map[string][]string{},
    		}
    		c.proxy.RLock()
    		for k, wr := range c.proxy.WatchedResources {
    			r := wr.ResourceNames
    			if r == nil {
    				r = []string{}
    			}
    			adsClient.Watches[k] = r
    		}
    		c.proxy.RUnlock()
    		adsClients.Connected = append(adsClients.Connected, adsClient)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top