Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for LEARN (0.09 sec)

  1. src/syscall/security_windows.go

    	NameCanonical        = 7
    	NameUserPrincipal    = 8
    	NameCanonicalEx      = 9
    	NameServicePrincipal = 10
    	NameDnsDomain        = 12
    )
    
    // This function returns 1 byte BOOLEAN rather than the 4 byte BOOL.
    // https://learn.microsoft.com/en-gb/archive/blogs/drnick/windows-and-upn-format-credentials
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. docs/hu/docs/index.md

    ---
    
    "_If you're looking to learn one **modern framework** for building REST APIs, check out **FastAPI** [...] It's fast, easy to use and easy to learn [...]_"
    
    "_We've switched over to **FastAPI** for our **APIs** [...] I think you'll like it [...]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. docs/es/docs/index.md

    ---
    
    "_If you're looking to learn one **modern framework** for building REST APIs, check out **FastAPI** [...] It's fast, easy to use and easy to learn [...]_"
    
    "_We've switched over to **FastAPI** for our **APIs** [...] I think you'll like it [...]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    // order so that if we know that A<B<C and later learn that A==D, Ordered will return
    // true for D<C.
    //
    // It is also possible to record inequality relations between nodes with SetNonEqual;
    // non-equality relations are not transitive, but they can still be useful: for instance
    // if we know that A<=B and later we learn that A!=B, we can deduce that A<B.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Other issues with the build won't cause it to produce incorrect results, but will lead to unnecessary cache misses.
    In this chapter you will learn about some typical problems and ways to avoid them.
    Fixing these issues will have the added benefit that your build will stop "acting up," and developers can forget about running builds with `clean` altogether.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[part3_gradle_dep_man]]
    = Part 3: Dependency Management
    
    Learn the basics of project dependencies and Gradle's dependency management.
    
    ****
    **In this section you will:**
    
    - Understand project dependencies
    - Inspect project dependencies
    - Use a Build Scan to analyze dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   repetition count ("x{5,7}"), among others.
    //
    //   Below is the syntax that we do support.  We chose it to be a
    //   subset of both PCRE and POSIX extended regex, so it's easy to
    //   learn wherever you come from.  In the following: 'A' denotes a
    //   literal character, period (.), or a single \\ escape sequence;
    //   'x' and 'y' denote regular expressions; 'm' and 'n' are for
    //   natural numbers.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. Makefile

    install: build ## builds minio and installs it to $GOPATH/bin.
    	@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
    	@mkdir -p $(GOPATH)/bin && cp -af $(PWD)/minio $(GOPATH)/bin/minio
    	@echo "Installation successful. To learn more, try \"minio --help\"."
    
    clean: ## cleanup all generated assets
    	@echo "Cleaning up all the generated files"
    	@find . -name '*.test' | xargs rm -fv
    	@find . -name '*~' | xargs rm -fv
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   repetition count ("x{5,7}"), among others.
    //
    //   Below is the syntax that we do support.  We chose it to be a
    //   subset of both PCRE and POSIX extended regex, so it's easy to
    //   learn wherever you come from.  In the following: 'A' denotes a
    //   literal character, period (.), or a single \\ escape sequence;
    //   'x' and 'y' denote regular expressions; 'm' and 'n' are for
    //   natural numbers.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/syscall_windows.go

    	FileAttributes uint32
    
    	// Pad out to 8-byte alignment.
    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    	// default alignment is used.” What we see here is padding rather than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top