Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 432 for begins (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    [source,kotlin]
    ----
    application {
        mainClass = "com.example.Main"
    }
    ----
    
    In this example, the main class (i.e., the point where the program's execution begins) is `com.example.Main`.
    
    Consult the <<writing_build_scripts.adoc#writing_build_scripts,Writing Build Scripts>> page to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/filepathlite/path_windows.go

    	case len(path) >= 2 && IsPathSeparator(path[1]):
    		// Path starts with \\, and is a UNC path.
    		return uncLen(path, 2)
    	}
    	return 0
    }
    
    // pathHasPrefixFold tests whether the path s begins with prefix,
    // ignoring case and treating all path separators as equivalent.
    // If s is longer than prefix, then s[len(prefix)] must be a path separator.
    func pathHasPrefixFold(s, prefix string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/math/tan.go

    // arithmetic   domain     # trials      peak         rms
    //    DEC      +-1.07e9      44000      4.1e-17     1.0e-17
    //    IEEE     +-1.07e9      30000      2.9e-16     8.1e-17
    //
    // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9.  The loss
    // is not gradual, but jumps suddenly to about 1 part in 10e7.  Results may
    // be meaningless for x > 2**49 = 5.6e14.
    // [Accuracy loss statement from sin.go comments.]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/internal/objfile/plan9obj.go

    	plan9Syms, err := f.plan9.Symbols()
    	if err != nil {
    		return nil, err
    	}
    
    	// Build sorted list of addresses of all symbols.
    	// We infer the size of a symbol by looking at where the next symbol begins.
    	var addrs []uint64
    	for _, s := range plan9Syms {
    		if !validSymType[s.Type] {
    			continue
    		}
    		addrs = append(addrs, s.Value)
    	}
    	sort.Sort(uint64s(addrs))
    
    	var syms []Sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 01:01:44 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top