Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,137 for begins (0.2 sec)

  1. src/net/smtp/auth.go

    package smtp
    
    import (
    	"crypto/hmac"
    	"crypto/md5"
    	"errors"
    	"fmt"
    )
    
    // Auth is implemented by an SMTP authentication mechanism.
    type Auth interface {
    	// Start begins an authentication with a server.
    	// It returns the name of the authentication protocol
    	// and optionally data to include in the initial AUTH message
    	// sent to the server.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/runtime/semasleep_test.go

    	// bug remains fixed. (This is fine, because if the bug really is unfixed we
    	// can keep the process hung indefinitely, as long as we signal it often
    	// enough.)
    	timeout := 10 * time.Second
    
    	// The subprocess begins sleeping for 1s after it writes to stdout, so measure
    	// the timeout from here (not from when we started creating the process).
    	// That should reduce noise from process startup overhead.
    	ready := time.Now()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args.cc

          builder.getStrArrayAttr({index_path}));
    
      new_arg_attrs.emplace_back(index_path_attr);
      return new_arg_attrs;
    }
    
    // Strips the "assets/" directory prefix, if `filename` begins with it. The
    // SavedModel loader attaches the prefix for you during loading.
    StringRef MaybeStripAssetDirectoryPrefix(const StringRef filename) {
      if (filename.find("assets/") == 0) {
        return filename.drop_front(7);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/why.go

    to exclude tests of dependencies.
    
    The output is a sequence of stanzas, one for each package or module
    name on the command line, separated by blank lines. Each stanza begins
    with a comment line "# package" or "# module" giving the target
    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/os/env.go

    func isAlphaNum(c uint8) bool {
    	return c == '_' || '0' <= c && c <= '9' || 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z'
    }
    
    // getShellName returns the name that begins the string and the number of bytes
    // consumed to extract it. If the name is enclosed in {}, it's part of a ${}
    // expansion and two more bytes are needed than the length of the name.
    func getShellName(s string) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/go/build/doc.go

    //
    // # Build Constraints
    //
    // A build constraint, also known as a build tag, is a condition under which a
    // file should be included in the package. Build constraints are given by a
    // line comment that begins
    //
    //	//go:build
    //
    // Build constraints may also be part of a file's name
    // (for example, source_windows.go will only be included if the target
    // operating system is windows).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/sym.go

    		return a.Name < b.Name
    	}
    	if !ea {
    		return a.Pkg.Path < b.Pkg.Path
    	}
    	return false
    }
    
    // IsExported reports whether name is an exported Go symbol (that is,
    // whether it begins with an upper-case letter).
    func IsExported(name string) bool {
    	if r := name[0]; r < utf8.RuneSelf {
    		return 'A' <= r && r <= 'Z'
    	}
    	r, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    Phase 3 - Execution  :: During the execution phase, Gradle executes each of the selected tasks.
    
    When Gradle is invoked to execute a task, the lifecycle begins.
    Let's see it in action.
    
    image::gradle-build-lifecycle.png[]
    
    == Step 2. Update the Settings File
    
    Add the following line to the top of the Settings file:
    
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    file("$projectDir/src")
    println "Destination: ${myCopyTask.destinationDir}"
    ----
    
    A property represents some state of an object. The presence of an `=` sign is a clear indicator that you're looking at a property. Otherwise, a qualified name — it begins with `<obj>.` — without any other decoration is also a property.
    
    If the name is unqualified, then it may be one of the following:
    
     * A task instance with that name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/internal/pkgpattern/pkgpattern.go

    			if strings.Contains(name, vendorChar) {
    				return false
    			}
    			name = replaceVendor(name, vendorChar)
    		}
    		return reg.MatchString(name)
    	}
    }
    
    // hasPathPrefix reports whether the path s begins with the
    // elements in prefix.
    func hasPathPrefix(s, prefix string) bool {
    	switch {
    	default:
    		return false
    	case len(s) == len(prefix):
    		return s == prefix
    	case len(s) > len(prefix):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top