Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for respond (0.48 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                }
                else {
                    SmbComOpenAndXResponse response = new SmbComOpenAndXResponse(config);
                    h.send(new SmbComOpenAndX(config, uncPath, access, sharing, flags, attrs, null), response);
                    this.fileLocator.updateType(response.getFileType());
                    info = response;
                    fileSize = response.getDataSize();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		return argv
    	}
    
    	// Only use response files if they are supported.
    	response := filepath.Join(*flagTmpdir, "response")
    	if err := os.WriteFile(response, nil, 0644); err != nil {
    		log.Fatalf("failed while testing response file: %v", err)
    	}
    	if !linkerFlagSupported(ctxt.Arch, argv[0], altLinker, "@"+response) {
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("not using response file because linker does not support one")
    		}
    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. src/crypto/tls/handshake_messages.go

    }
    
    type certificateStatusMsg struct {
    	response []byte
    }
    
    func (m *certificateStatusMsg) marshal() ([]byte, error) {
    	var b cryptobyte.Builder
    	b.AddUint8(typeCertificateStatus)
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		b.AddUint8(statusTypeOCSP)
    		b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    			b.AddBytes(m.response)
    		})
    	})
    
    	return b.Bytes()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	}
    
    	n, _ := c.input.Read(b)
    
    	// If a close-notify alert is waiting, read it so that we can return (n,
    	// EOF) instead of (n, nil), to signal to the HTTP response reading
    	// goroutine that the connection is now closed. This eliminates a race
    	// where the HTTP response reading goroutine would otherwise not observe
    	// the EOF until its next read, by which time a client goroutine might
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    					}
    					if len(c.VerifiedChains) == 0 {
    						return fmt.Errorf("client: got len(VerifiedChains) = 0, wanted non-zero")
    					}
    					if c.DidResume {
    						return nil
    						// The SCTs and OCSP Response are dropped on resumption.
    						// See http://golang.org/issue/39075.
    					}
    					if len(c.OCSPResponse) == 0 {
    						return fmt.Errorf("client: got len(OCSPResponse) = 0, wanted non-zero")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// through the TLS handshake for the leaf certificate, if any.
    	SignedCertificateTimestamps [][]byte
    
    	// OCSPResponse is a stapled Online Certificate Status Protocol (OCSP)
    	// response provided by the peer for the leaf certificate, if any.
    	OCSPResponse []byte
    
    	// TLSUnique contains the "tls-unique" channel binding value (see RFC 5929,
    	// Section 3). This value will be nil for TLS 1.3 connections and for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	} else {
    		l.attrSpecial.Unset(i)
    	}
    }
    
    // AttrCgoExportDynamic returns true for a symbol that has been
    // specially marked via the "cgo_export_dynamic" compiler directive
    // written by cgo (in response to //export directives in the source).
    func (l *Loader) AttrCgoExportDynamic(i Sym) bool {
    	_, ok := l.attrCgoExportDynamic[i]
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top