Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 660 for amount (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.21.md

    ### CSI Service Account Token
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

        /** Account control bit flag: Normal user account */
        public static final int ACB_NORMAL = 16;
        /** Account control bit flag: MNS logon user account */
        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
    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

        /** Account control bit flag: Normal user account */
        public static final int ACB_NORMAL = 16;
        /** Account control bit flag: MNS logon user account */
        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
    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. android/guava/src/com/google/common/hash/Java8Compatibility.java

     * the License.
     */
    
    package com.google.common.hash;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.nio.Buffer;
    
    /**
     * Wrappers around {@link Buffer} methods that are covariantly overridden in Java 9+. See
     * https://github.com/google/guava/issues/3990
     */
    @GwtIncompatible
    final class Java8Compatibility {
      static void clear(Buffer b) {
        b.clear();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. docs/tr/docs/advanced/wsgi.md

    # WSGI - Flask, Django ve Daha Fazlasını FastAPI ile Kullanma
    
    WSGI uygulamalarını [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank}, [Behind a Proxy](behind-a-proxy.md){.internal-link target=_blank} bölümlerinde gördüğünüz gibi bağlayabilirsiniz.
    
    Bunun için `WSGIMiddleware` ile Flask, Django vb. WSGI uygulamanızı sarmalayabilir ve FastAPI'ya bağlayabilirsiniz.
    
    ## `WSGIMiddleware` Kullanımı
    
    `WSGIMiddleware`'ı projenize dahil edin.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    - On compatible systems, a mounter's Unmount implementation is changed to not return an error when the specified target can be detected as not a mount point. On Linux, the behavior of detecting a mount point depends on `umount` command is validated when the mounter is created. Additionally, mount point checks will be skipped in CleanupMountPoint/CleanupMountWithForce if the mounter's Unmount having the changed behavior of not returning error when target is not a...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtStatus.java

                "Logon failure: account logon time restriction violation.", "Logon failure: user not allowed to log on to this computer.",
                "Logon failure: the specified account password has expired.", "Logon failure: account currently disabled.",
                "No mapping between account names and security IDs was done.", "The security ID structure is invalid.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. okhttp/build.gradle.kts

          // Work around robolectric requirements and limitations
          // https://github.com/robolectric/robolectric/issues/10419
          filter {
            excludeTest("okhttp3.internal.publicsuffix.PublicSuffixDatabaseTest", null)
          }
        }
      }
    }
    
    // Work around issue 8826, where the Sentry SDK assumes that OkHttp's internal-visibility symbols
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ForwardingLock.java

    import com.google.common.annotations.J2ktIncompatible;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.Lock;
    
    /** Forwarding wrapper around a {@code Lock}. */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class ForwardingLock implements Lock {
      abstract Lock delegate();
    
      @Override
      public void lock() {
        delegate().lock();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. tests/update_test.go

    	}
    
    	if result.Account.Number != user.Account.Number {
    		t.Errorf("account number should not been changed, expects: %v, got %v", user.Account.Number, result.Account.Number)
    	}
    }
    
    func TestUpdatesWithBlankValues(t *testing.T) {
    	user := *GetUser("updates_with_blank_value", Config{})
    	DB.Save(&user)
    
    	var user2 User
    	user2.ID = user.ID
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 30.4K bytes
    - Viewed (0)
Back to top