Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 773 for domain (0.2 sec)

  1. .github/workflows/trusted_partners.js

        console.log(user);
        throw `Error Getting user data for ${username}`;
      }
      const email = user.data.email;
      let domain = "";
      if (email && email.lastIndexOf("@") != -1)
        domain = email.substring(email.lastIndexOf("@") +1);
      console.log(domain);
      return domain;
    };
    
    /** For trusted parters like Intel, we want to auto-run tests
        This allows us to reduce the delay to external partners
    JavaScript
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Feb 07 13:52:04 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type1Message.java

        /**
         * Returns the supplied authentication domain.
         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain () {
            return this.suppliedDomain;
        }
    
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain
         *            The supplied domain for this message.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/Type3Message.java

        }
    
    
        /**
         * Returns the domain in which the user has an account.
         *
         * @return A <code>String</code> containing the domain for the user.
         */
        public String getDomain () {
            return this.domain;
        }
    
    
        /**
         * Sets the domain for this message.
         *
         * @param domain
         *            The domain.
         */
        public void setDomain ( String domain ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/EmptyContiguousSet.java

      private static final class SerializedForm<C extends Comparable> implements Serializable {
        private final DiscreteDomain<C> domain;
    
        private SerializedForm(DiscreteDomain<C> domain) {
          this.domain = domain;
        }
    
        private Object readResolve() {
          return new EmptyContiguousSet<>(domain);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      @GwtIncompatible // serialization
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Mar 28 18:35:00 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java

        /**
         * 
         */
        public static final int SV_TYPE_DOMAIN_ENUM = 0x80000000;
    
        static final String[] DESCR = {
            "WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000",
        };
    
        String domain, lastName = null;
        int serverTypes;
    
    
        /**
         * 
         * @param config
         * @param domain
         * @param serverTypes
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

    * **TCP doesn't know about "domains"**. Only about IP addresses.
        * The information about the **specific domain** requested goes in the **HTTP data**.
    * The **HTTPS certificates** "certify" a **certain domain**, but the protocol and encryption happen at the TCP level, **before knowing** which domain is being dealt with.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  7. internal/crypto/sse_test.go

    func TestS3String(t *testing.T) {
    	const Domain = "SSE-S3"
    	if domain := S3.String(); domain != Domain {
    		t.Errorf("S3's string method returns wrong domain: got '%s' - want '%s'", domain, Domain)
    	}
    }
    
    func TestSSECString(t *testing.T) {
    	const Domain = "SSE-C"
    	if domain := SSEC.String(); domain != Domain {
    		t.Errorf("SSEC's string method returns wrong domain: got '%s' - want '%s'", domain, Domain)
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

         * @see jcifs.DfsReferralData#getDomain()
         */
        @Override
        public String getDomain () {
            return this.domain;
        }
    
    
        /**
         * @param domain
         *            the domain to set
         */
        public void setDomain ( String domain ) {
            this.domain = domain;
        }
    
    
        @Override
        public String getLink () {
            return this.link;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 11K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * 
         * @param domain
         * @param username
         * @param challenge
         * @param ansiHash
         * @param unicodeHash
         */
        public NtlmPasswordAuthentication ( String domain, String username, byte[] challenge, byte[] ansiHash, byte[] unicodeHash ) {
            super(domain, username, null);
            if ( domain == null || username == null || ansiHash == null || unicodeHash == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

            DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", null);
            byte[] domain = new byte[0];
            if (DEFAULT_DOMAIN != null) {
                try {
                    domain = DEFAULT_DOMAIN.getBytes(UNI_ENCODING);
                } catch (IOException ex) { }
            }
            int domainLength = domain.length;
            byte[] server = new byte[0];
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
Back to top