Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for orust (0.96 sec)

  1. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "Logon failure: the user has not been granted the requested logon type at this computer.",
            "The SAM database on the Windows NT Server does not have a computer account for this workstation trust relationship.",
            "The trust relationship between the primary domain and the trusted domain failed.",
            "The account used is a Computer Account. Use your global user account or local user account to access this server.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

            "The SAM database on the Windows NT Server does not have a computer account for this workstation trust relationship.",
            "The logon request failed because the trust relationship between the primary domain and the trusted domain failed.",
            "The logon request failed because the trust relationship between this workstation and the primary domain failed.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java

        return ListTestSuiteBuilder.using(
                new TestStringListGenerator() {
                  @Override
                  protected List<String> create(final String[] elements) {
                    // For this test we trust ArrayList works
                    final List<String> list = new ArrayList<>();
                    Collections.addAll(list, elements);
                    return new AbstractSequentialList<String>() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 11.6K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java

        return ListTestSuiteBuilder.using(
                new TestStringListGenerator() {
                  @Override
                  protected List<String> create(final String[] elements) {
                    // For this test we trust ArrayList works
                    final List<String> list = new ArrayList<>();
                    Collections.addAll(list, elements);
                    return new AbstractSequentialList<String>() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopbce.go

    				knn, k := findKNN(limit)
    				if knn == nil || k < 0 {
    					return false
    				}
    				// limit == (something nonnegative) - k. That subtraction can't underflow, so
    				// we can trust it.
    				if inclusive {
    					// ind <= knn - k cannot overflow if step is at most k
    					return step <= k
    				}
    				// ind < knn - k cannot overflow if step is at most k+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcs/vcs.go

    		log.Printf("get %q: found meta tag %#v at %s", importPath, mmi, url)
    	}
    	// If the import was "uni.edu/bob/project", which said the
    	// prefix was "uni.edu" and the RepoRoot was "evilroot.com",
    	// make sure we don't trust Bob and check out evilroot.com to
    	// "uni.edu" yet (possibly overwriting/preempting another
    	// non-evil student). Instead, first verify the root and see
    	// if it matches Bob's claim.
    	if mmi.Prefix != importPath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  7. doc/go_mem.html

    This property is called DRF-SC.
    </p>
    
    <p>
    The intent of the formal definition is to match
    the DRF-SC guarantee provided to race-free programs
    by other languages, including C, C++, Java, JavaScript, Rust, and Swift.
    </p>
    
    <p>
    Certain Go language operations such as goroutine creation and memory allocation
    act as synchronization operations.
    The effect of these operations on the synchronized-before partial order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top