Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for readelf (0.38 sec)

  1. src/crypto/tls/handshake_server_test.go

    // TestHandshakeServerUnsupportedKeyShare tests a client that sends a key share
    // that's not in the supported groups list.
    func TestHandshakeServerUnsupportedKeyShare(t *testing.T) {
    	pk, _ := ecdh.X25519().GenerateKey(rand.Reader)
    	clientHello := &clientHelloMsg{
    		vers:               VersionTLS12,
    		random:             make([]byte, 32),
    		supportedVersions:  []uint16{VersionTLS13},
    		cipherSuites:       []uint16{TLS_CHACHA20_POLY1305_SHA256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	lib.Units = append(lib.Units, unit)
    
    	magic := uint32(c1)<<24 | uint32(c2)<<16 | uint32(c3)<<8 | uint32(c4)
    	if magic == 0x7f454c46 { // \x7F E L F
    		ldelf := func(ctxt *Link, f *bio.Reader, pkg string, length int64, pn string) {
    			textp, flags, err := loadelf.Load(ctxt.loader, ctxt.Arch, ctxt.IncVersion(), f, pkg, length, pn, ehdr.Flags)
    			if err != nil {
    				Errorf(nil, "%v", err)
    				return
    			}
    			ehdr.Flags = flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Preconditions.java

     *
     * <p>It is of course possible to use the methods of this class to check for invalid conditions
     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
     * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    	ctx := r.Context()
    
    	objectAPI, creds := validateAdminReq(ctx, w, r, policy.StartBatchJobAction)
    	if objectAPI == nil {
    		return
    	}
    
    	buf, err := io.ReadAll(ioutil.HardLimitReader(r.Body, humanize.MiByte*4))
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	user := creds.AccessKey
    	if creds.ParentUser != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    // Errors are ignored, only errors from the callback are returned.
    // For now only direct file paths are supported.
    func (z *erasureServerPools) GetRawData(ctx context.Context, volume, file string, fn func(r io.Reader, host string, disk string, filename string, info StatInfo) error) error {
    	found := 0
    	for _, s := range z.serverPools {
    		for _, set := range s.sets {
    			for _, disk := range set.getDisks() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/Futures.java

        }
      }
    
      /**
       * Returns the result of the input {@code Future}, which must have already completed.
       *
       * <p>The benefits of this method are twofold. First, the name "getDone" suggests to readers that
       * the {@code Future} is already done. Second, if buggy code calls {@code getDone} on a {@code
       * Future} that is still pending, the program will throw instead of block. This can be important
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    //
    // There can be read-write races between heapSetType and things
    // that read the heap metadata like scanobject. However, since
    // heapSetType is only used for objects that have not yet been
    // made reachable, readers will ignore bits being modified by this
    // function. This does mean this function cannot transiently modify
    // shared memory that belongs to neighboring objects. Also, on weakly-ordered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    	return svcPort
    }
    
    // getFirstColumn reads all the content from r into memory and return a
    // slice which consists of the first word from each line.
    func getFirstColumn(r io.Reader) ([]string, error) {
    	b, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	lines := strings.Split(string(b), "\n")
    	words := make([]string, 0, len(lines))
    	for i := range lines {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    				copy(h.allArenas, oldSlice)
    				// Do not free the old backing array because
    				// there may be concurrent readers. Since we
    				// double the array each time, this can lead
    				// to at most 2x waste.
    			}
    			h.allArenas = h.allArenas[:len(h.allArenas)+1]
    			h.allArenas[len(h.allArenas)-1] = ri
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    	}
    	defer contentReader.Close()
    
    	expContent, err := io.ReadAll(contentReader)
    	if err != nil {
    		c.Fatalf("export %d: Unable to read exported content: %v", caseNum, err)
    	}
    
    	return expContent
    }
    
    type dummyCloser struct {
    	io.Reader
    }
    
    func (d dummyCloser) Close() error { return nil }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top