Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,242 for begins (0.11 sec)

  1. src/main/java/jcifs/internal/SMBSigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data
         *            The data.
         * @param offset
         *            The starting offset at which the SMB header begins.
         * @param length
         *            The length of the SMB data starting at offset.
         * @param request
         *            request message
         * @param response
         *            response message
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/trace/raw/doc.go

    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    The first line in each text trace is the header line.
    
    	Trace Go1.XX
    
    Following that is a series of event lines. Each event begins with an
    event name, followed by zero or more named unsigned integer arguments.
    Names are separated from their integer values by an '=' sign. Names can
    consist of any UTF-8 character except '='.
    
    For example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/text/scanner/example_test.go

    	// default:1:2: var1
    	// default:1:7: var2
    	// default:1:11: %
    	//
    	// percent:1:1: %var1
    	// percent:1:7: var2
    	// percent:1:11: %
    }
    
    func Example_mode() {
    	const src = `
        // Comment begins at column 5.
    
    This line should not be included in the output.
    
    /*
    This multiline comment
    should be extracted in
    its entirety.
    */
    `
    
    	var s scanner.Scanner
    	s.Init(strings.NewReader(src))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/txtar/archive.go

    //   - diff nicely in git history and code reviews.
    //
    // Non-goals include being a completely general archive format,
    // storing binary data, storing file modes, storing special files like
    // symbolic links, and so on.
    //
    // # Txtar format
    //
    // A txtar archive is zero or more comment lines and then a sequence of file entries.
    // Each file entry begins with a file marker line of the form "-- FILENAME --"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/str/path.go

    // license that can be found in the LICENSE file.
    
    package str
    
    import (
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    )
    
    // HasPathPrefix reports whether the slash-separated path s
    // begins with the elements in prefix.
    func HasPathPrefix(s, prefix string) bool {
    	if len(s) == len(prefix) {
    		return s == prefix
    	}
    	if prefix == "" {
    		return true
    	}
    	if len(s) > len(prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data The data.
         * @param offset The starting offset at which the SMB header begins.
         * @param length The length of the SMB data starting at offset. 
         */
        void sign(byte[] data, int offset, int length,
                    ServerMessageBlock request, ServerMessageBlock response) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  7. pkg/util/async/runner.go

    }
    
    // NewRunner makes a runner for the given function(s). The function(s) should loop until
    // the channel is closed.
    func NewRunner(f ...func(stop chan struct{})) *Runner {
    	return &Runner{loopFuncs: f}
    }
    
    // Start begins running.
    func (r *Runner) Start() {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	if r.stop == nil {
    		c := make(chan struct{})
    		r.stop = &c
    		for i := range r.loopFuncs {
    			go r.loopFuncs[i](*r.stop)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 06:37:00 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // the TunnelingConnection. A lot of the other code in streamtunnel.go
    // is for properly upgrading both the upstream SPDY connection and the
    // downstream WebSocket connection before streaming begins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskDependency.java

         * execution graph for a build. This occurs after all the projects have been evaluated, and before any task
         * execution begins.</p>
         *
         * @param task The task to determine the dependencies for.
         * @return The tasks which the given task depends on. Returns an empty set if the task has no dependencies.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle-audit.go

    //go:generate stringer -type lcEventSrc -trimprefix lcEventSrc_ $GOFILE
    type lcEventSrc uint8
    
    //revive:disable:var-naming Underscores is used here to indicate where common prefix ends and the enumeration name begins
    const (
    	lcEventSrc_None lcEventSrc = iota
    	lcEventSrc_Heal
    	lcEventSrc_Scanner
    	lcEventSrc_Decom
    	lcEventSrc_Rebal
    	lcEventSrc_s3HeadObject
    	lcEventSrc_s3GetObject
    	lcEventSrc_s3ListObjects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 01 15:56:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top