Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for esam (0.01 sec)

  1. maven-tests/mvnw

        distributionPlatform=linux-amd64
        ;;
      esac
      distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip"
      ;;
    maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
    *) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
    esac
    
    # apply MVNW_REPOURL and calculate MAVEN_HOME
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

                    if (this.sam == null) { /* YOYOYO */
                        this.sam = new SamrSamArray();
                    }
                    this.sam.decode(_src);
    
                }
                this.num_entries = _src.dec_ndr_long();
                this.retval = _src.dec_ndr_long();
            }
        }
    
        /**
         * SAMR OpenAlias operation for opening an alias in the SAM database.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                if (_samp != 0) {
                    if (sam == null) { /* YOYOYO */
                        sam = new SamrSamArray();
                    }
                    sam.decode(_src);
    
                }
                num_entries = _src.dec_ndr_long();
                retval = _src.dec_ndr_long();
            }
        }
    
        /**
         * SAMR OpenAlias operation for opening an alias in the SAM database.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  4. mvnw

        if [ -x "/usr/libexec/java_home" ]; then
          JAVA_HOME="$(/usr/libexec/java_home)"
          export JAVA_HOME
        else
          JAVA_HOME="/Library/Java/Home"
          export JAVA_HOME
        fi
      fi
      ;;
    esac
    
    if [ -z "$JAVA_HOME" ]; then
      if [ -r /etc/gentoo-release ]; then
        JAVA_HOME=$(java-config --jre-home)
      fi
    fi
    
    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin; then
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. docs/changelogs/upgrading_to_okhttp_4.md

    
    SAM Conversions
    ---------------
    
    When you use Java APIs from Kotlin you can operate on Java interfaces as if they were Kotlin
    lambdas. The [feature][java_sams] is available for interfaces that define a Single Abstract Method
    (SAM).
    
    But when you use Kotlin APIs from Kotlin there’s no automatic conversion. Code that used SAM lambdas
    with OkHttp 3.x: must use `object :` with OkHttp 4.x:
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

            @DisplayName("Should handle null sam in decode")
            void testDecodeOutNullSam() throws NdrException {
                // Given: Message with null sam
                samr.SamrEnumerateAliasesInDomain message = new samr.SamrEnumerateAliasesInDomain(mockPolicyHandle, 1, 2, null, 3);
                when(mockNdrBuffer.dec_ndr_long()).thenReturn(10, 100, 1, 100, 5, 0); // resume_handle, _samp, sam.count, sam._entriesp, num_entries, retval
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SIDCacheImpl.java

                        handle.sendrecv(rpc);
                        if (rpc.retval != 0) {
                            throw new SmbException(rpc.retval, false);
                        }
    
                        final Map<jcifs.SID, List<jcifs.SID>> map = new HashMap<>();
    
                        for (int ei = 0; ei < rpc.sam.count; ei++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtStatus.java

        int NT_STATUS_NO_SUCH_ALIAS = 0xC0000151;
        /** The user has not been granted the requested logon type at this computer */
        int NT_STATUS_LOGON_TYPE_NOT_GRANTED = 0xC000015b;
        /** The SAM database does not have a computer account for this workstation trust relationship */
        int NT_STATUS_NO_TRUST_SAM_ACCOUNT = 0xC000018b;
        /** The trust relationship between the primary domain and the trusted domain failed */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SID.java

                    handle.sendrecv(rpc);
                    if (rpc.retval != 0) {
                        throw new SmbException(rpc.retval, false);
                    }
    
                    final Map map = new HashMap();
    
                    for (int ei = 0; ei < rpc.sam.count; ei++) {
                        final samr.SamrSamEntry entry = rpc.sam.entries[ei];
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtStatus.java

        int NT_STATUS_NO_SUCH_ALIAS = 0xC0000151;
        /** The user has not been granted the requested logon type at this computer */
        int NT_STATUS_LOGON_TYPE_NOT_GRANTED = 0xC000015b;
        /** The SAM database does not have a computer account for this workstation trust relationship */
        int NT_STATUS_NO_TRUST_SAM_ACCOUNT = 0xC000018b;
        /** The trust relationship between the primary domain and the trusted domain failed */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top