Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 28 of 28 for 345 (0.07 seconds)

  1. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                log.warn("NTLMv1 NTLM response is deprecated and insecure. Consider using NTLMv2.");
                yield NtlmUtil.getNTLMResponse(getPasswordAsCharArray(), chlng);
            }
            case 3, 4, 5 -> {
                // NTLMv2 - returns empty for unicode hash as NTLMv2 doesn't use it
                yield new byte[0];
            }
            default -> {
                // Default to NTLMv2 behavior (empty response)
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 30.3K bytes
    - Click Count (0)
  2. index.yaml

        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-3.4.5.tgz
        version: 3.4.5
      - apiVersion: v1
        appVersion: RELEASE.2021-12-29T06-49-06Z
        created: "2025-01-02T21:34:25.020285989-08:00"
        description: Multi-Cloud Object Storage
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Jan 03 05:34:47 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            if (hashesExternal) {
                return unicodeHash;
            }
            return switch (LM_COMPATIBILITY) {
            case 0, 1, 2 -> getNTLMResponse(password, challenge);
            case 3, 4, 5 -> /*
                            if( clientChallenge == null ) {
                            clientChallenge = new byte[8];
                            RANDOM.nextBytes( clientChallenge );
                            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  4. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_STAT64 = 338
    pkg syscall (darwin-386), const SYS_STAT64_EXTENDED = 341
    pkg syscall (darwin-386), const SYS_STATFS = 157
    pkg syscall (darwin-386), const SYS_STATFS64 = 345
    pkg syscall (darwin-386), const SYS_STATV = 217
    pkg syscall (darwin-386), const SYS_STAT_EXTENDED = 279
    pkg syscall (darwin-386), const SYS_SWAPON = 85
    pkg syscall (darwin-386), const SYS_SYMLINK = 57
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Click Count (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SIGRETURN ideal-int
    pkg syscall (freebsd-arm64), const SYS_SIGSUSPEND = 341
    pkg syscall (freebsd-arm64), const SYS_SIGSUSPEND ideal-int
    pkg syscall (freebsd-arm64), const SYS_SIGTIMEDWAIT = 345
    pkg syscall (freebsd-arm64), const SYS_SIGTIMEDWAIT ideal-int
    pkg syscall (freebsd-arm64), const SYS_SIGWAIT = 429
    pkg syscall (freebsd-arm64), const SYS_SIGWAIT ideal-int
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Click Count (0)
  6. api/go1.20.txt

    Dmitri Goutnik <******@****.***> 1676652256 -0500
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Click Count (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_STAT64_EXTENDED ideal-int
    pkg syscall (darwin-arm64), const SYS_STATFS = 157
    pkg syscall (darwin-arm64), const SYS_STATFS ideal-int
    pkg syscall (darwin-arm64), const SYS_STATFS64 = 345
    pkg syscall (darwin-arm64), const SYS_STATFS64 ideal-int
    pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED = 279
    pkg syscall (darwin-arm64), const SYS_STAT_EXTENDED ideal-int
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Click Count (0)
  8. doc/go_spec.html

    i := 0
    i, x[i] = 1, 2  // set i = 1, x[0] = 2
    
    i = 0
    x[i], i = 2, 1  // set x[0] = 2, i = 1
    
    x[0], x[0] = 1, 2  // set x[0] = 1, then x[0] = 2 (so x[0] == 2 at end)
    
    x[1], x[3] = 4, 5  // set x[1] = 4, then panic setting x[3] = 5.
    
    type Point struct { x, y int }
    var p *Point
    x[2], p.x = 6, 7  // set x[2] = 6, then panic setting p.x = 7
    
    i = 2
    x = []int{3, 5, 7}
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Apr 01 23:39:18 GMT 2026
    - 287.8K bytes
    - Click Count (1)
Back to Top