Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,283 for example2 (0.57 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
      // Returns a pointer to the last occurrence of a valid path separator in
      // the FilePath. On Windows, for example, both '/' and '\' are valid path
      // separators. Returns NULL if no path separator was found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/README.md

    a subdirectory with the code of the error message, and add a `index.md` file that contains the
    full description of the problem with potential remediation steps, examples, etc. See the existing
    files in that directory for examples of how this is done.
    
    ## FAQ
    
    ### What if I need a resource not available as a collection?
    
    Please open an issue (directed at the "Configuration" product area) or visit the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. docs/en/docs/python-types.md

    In all the docs there are examples compatible with each version of Python (when there's a difference).
    
    For example "**Python 3.6+**" means it's compatible with Python 3.6 or above (including 3.7, 3.8, 3.9, 3.10, etc). And "**Python 3.9+**" means it's compatible with Python 3.9 or above (including 3.10, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/sql-databases.md

    But you can use any relational database that you want.
    
    Here we'll see an example using <a href="https://www.sqlalchemy.org/" class="external-link" target="_blank">SQLAlchemy</a>.
    
    You can easily adapt it to any database supported by SQLAlchemy, like:
    
    * PostgreSQL
    * MySQL
    * SQLite
    * Oracle
    * Microsoft SQL Server, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    func RegexError(msg string, fmt string, examples ...string) string {
    	if len(examples) == 0 {
    		return msg + " (regex used for validation is '" + fmt + "')"
    	}
    	msg += " (e.g. "
    	for i := range examples {
    		if i > 0 {
    			msg += " or "
    		}
    		msg += "'" + examples[i] + "', "
    	}
    	msg += "regex used for validation is '" + fmt + "')"
    	return msg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    			*doImport, *seen = true, true
    		}
    	}
    	ex := doc.Examples(f)
    	sort.Slice(ex, func(i, j int) bool { return ex[i].Order < ex[j].Order })
    	for _, e := range ex {
    		*doImport = true // import test file whether executed or not
    		if e.Output == "" && !e.EmptyOutput {
    			// Don't run examples with no output.
    			continue
    		}
    		t.Examples = append(t.Examples, testFunc{pkg, "Example" + e.Name, e.Output, e.Unordered})
    		*seen = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. src/fmt/doc.go

    For example, %x will scan an integer as a hexadecimal number,
    and %v will scan the default representation format for the value.
    The [Printf] verbs %p and %T and the flags # and + are not implemented.
    For floating-point and complex values, all valid formatting verbs
    (%b %e %E %f %F %g %G %x %X and %v) are equivalent and accept
    both decimal and hexadecimal notation (for example: "2.3e+7", "0x4.5p-8")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	Mercurial   .hg
    //	Subversion  .svn
    //
    // For example,
    //
    //	import "example.org/user/foo.hg"
    //
    // denotes the root directory of the Mercurial repository at
    // example.org/user/foo or foo.hg, and
    //
    //	import "example.org/repo.git/foo/bar"
    //
    // denotes the foo/bar directory of the Git repository at
    // example.org/repo or repo.git.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    The project path is assumed to be equal to the relative physical file system path.
    For example, a path `services:api` is mapped by default to a folder `./services/api` (relative to the project root `.`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms.md

    With `Form` you can declare the same configurations as with `Body` (and `Query`, `Path`, `Cookie`), including validation, examples, an alias (e.g. `user-name` instead of `username`), etc.
    
    !!! info
        `Form` is a class that inherits directly from `Body`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top