Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for enabled (0.16 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/samr.java

                this.retval = _src.dec_ndr_long();
            }
        }
    
        public static final int SE_GROUP_MANDATORY = 1;
        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        public static final int SE_GROUP_ENABLED = 4;
        public static final int SE_GROUP_OWNER = 8;
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
        public static final int SE_GROUP_RESOURCE = 536870912;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

         * past them.)
         *
         * We could consider "lying" and omitting @CheckNotNull from all these fields. Normally, I'm not
         * a fan of that: What if we someday implement (presumably to be enabled during tests only)
         * bytecode rewriting that checks for any null value that passes through an API with a
         * known-non-null type? But that particular problem might not arise here, since we're not
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Verify.java

    /**
     * Static convenience methods that serve the same purpose as Java language <a
     * href="https://docs.oracle.com/javase/8/docs/technotes/guides/language/assert.html">assertions</a>,
     * except that they are always enabled. These methods should be used instead of Java assertions
     * whenever there is a chance the check may fail "in real life". Example:
     *
     * <pre>{@code
     * Bill bill = remoteService.getLastUnpaidBill();
     *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            this.smb2OnlyNegotiation = Config.getBoolean(p, "jcifs.smb.client.useSMB2Negotiation", false);
            this.port139FailoverEnabled = Config.getBoolean(p, "jcifs.smb.client.port139.enabled", false);
    
            this.useNTSmbs = Config.getBoolean(p, "jcifs.smb.client.useNTSmbs", true);
    
            this.flags2 = Config.getInt(p, "jcifs.smb.client.flags2", 0);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

            int securityMode = Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED;
            if ( this.signingEnforced || ( first != null && first.isSigningRequired() ) ) {
                securityMode = Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED | Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED;
            }
    
            return securityMode;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                    ? Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED : Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED;
            boolean anonymous = this.credentials.isAnonymous();
            long sessId = 0;
    
            boolean preauthIntegrity = negoResp.getSelectedDialect().atLeast(DialectVersion.SMB311);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

         * Disables cycle detection. This option causes the factory to return unmodified lock
         * implementations provided by the JDK, and is provided to allow applications to easily
         * parameterize when cycle detection is enabled.
         *
         * <p>Note that locks created by a factory with this policy will not participate the
         * cycle detection performed by locks created by other factories.
         */
        DISABLED {
          @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 35.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        /* MNG-1995 */
        @Test
        void testBooleanInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("boolean-interpolation");
            assertEquals(true, pom.getValue("repositories[1]/releases/enabled"));
            assertEquals(true, pom.getValue("build/resources[1]/filtering"));
        }
    
        /* MNG-3899 */
        @Test
        void testBuildExtensionInheritance() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningEnabled()
         */
        @Override
        public boolean isSigningEnabled () {
            return ( this.securityMode & ( Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED ) ) != 0;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningRequired()
         */
        @Override
        public boolean isSigningRequired () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeConnection.java

                DfsReferralData referral ) throws CIFSException {
            if ( log.isDebugEnabled() && trans.isSigningOptional() && !loc.isIPC() && !this.ctx.getConfig().isSigningEnforced() ) {
                log.debug("Signatures for file enabled but not required " + this);
            }
    
            if ( referral != null ) {
                t.markDomainDfs();
            }
    
            try {
                if ( log.isTraceEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top