Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 515 for implementasyon (0.11 seconds)

  1. docs/tr/docs/tutorial/security/simple-oauth2.md

    Bu basit örnekte tamamen güvensiz davranıp token olarak aynı `username`’i döndüreceğiz.
    
    /// tip | İpucu
    
    Bir sonraki bölümde, password hashing ve <abbr title="JSON Web Tokens">JWT</abbr> token’ları ile gerçekten güvenli bir implementasyon göreceksiniz.
    
    Ama şimdilik ihtiyacımız olan spesifik detaylara odaklanalım.
    
    ///
    
    {* ../../docs_src/security/tutorial003_an_py310.py hl[87] *}
    
    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * override {@link #setCount(Object, int, int)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardSetCount(@ParametricNullness E element, int oldCount, int newCount) {
        return Multisets.setCountImpl(this, element, oldCount, newCount);
      }
    
      /**
       * A sensible implementation of {@link Multiset#elementSet} in terms of the following methods:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  3. okhttp/build.gradle.kts

            implementation(libs.kotlin.test.junit)
            implementation(libs.kotlinx.coroutines.core)
            implementation(libs.kotlinx.serialization.core)
            implementation(libs.kotlinx.serialization.json)
            implementation(libs.openjsse)
            implementation(libs.square.moshi.kotlin)
            implementation(libs.square.moshi)
            implementation(libs.square.okio.fakefilesystem)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

    import jcifs.internal.smb2.rdma.RdmaNegotiateResponse;
    
    /**
     * DiSNI RDMA connection implementation.
     *
     * This class would integrate with the DiSNI library to provide
     * high-performance RDMA operations over InfiniBand/RoCE networks.
     *
     * Note: This is a skeleton implementation. A real implementation would
     * require proper DiSNI integration with actual RDMA hardware.
     */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 10.2K bytes
    - Click Count (0)
  5. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

                // Test with mock
                doNothing().when(mockReferralData).append(null);
                assertDoesNotThrow(() -> mockReferralData.append(null));
    
                // Test with concrete implementation - behavior depends on implementation
                // May throw NullPointerException
                try {
                    concreteImplementation.append(null);
                } catch (NullPointerException e) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * override {@code pollFirstEntry} to forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardPollLastEntry() {
        return Iterators.pollNext(descendingMap().entrySet().iterator());
      }
    
      @Override
      public NavigableMap<K, V> descendingMap() {
        return delegate().descendingMap();
      }
    
      /**
       * A sensible implementation of {@link NavigableMap#descendingMap} in terms of the methods of this
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.1K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * override {@code pollFirstEntry} to forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardPollLastEntry() {
        return Iterators.pollNext(descendingMap().entrySet().iterator());
      }
    
      @Override
      public NavigableMap<K, V> descendingMap() {
        return delegate().descendingMap();
      }
    
      /**
       * A sensible implementation of {@link NavigableMap#descendingMap} in terms of the methods of this
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.3K bytes
    - Click Count (0)
  8. compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         *
         * @param parser The XML parser
         * @return Name of the custom implementation; otherwise {@code null}
         */
        private static String parseImplementation(final XmlPullParser parser) {
            return parser.getAttributeValue(null, "implementation");
        }
    
        /**
         * Attempts to load the named implementation, uses default implementation if no name is given.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  9. guava/src/com/google/common/collect/ForwardingMultiset.java

       * override {@link #setCount(Object, int, int)} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardSetCount(@ParametricNullness E element, int oldCount, int newCount) {
        return Multisets.setCountImpl(this, element, oldCount, newCount);
      }
    
      /**
       * A sensible implementation of {@link Multiset#elementSet} in terms of the following methods:
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/ForwardingMap.java

       * #entrySet}. In many cases, you may wish to override {@link #clear} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected void standardClear() {
        Iterators.clear(entrySet().iterator());
      }
    
      /**
       * A sensible implementation of {@link Map#keySet} in terms of the following methods: {@link
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Aug 06 17:32:30 GMT 2025
    - 9.8K bytes
    - Click Count (0)
Back to Top