Search Options

Results per page
Sort
Preferred Languages
Advance

Results 471 - 480 of 878 for somme (0.02 sec)

  1. guava/src/com/google/common/primitives/ImmutableIntArray.java

     *       allocating garbage).
     * </ul>
     *
     * <p>Disadvantages compared to {@code int[]}:
     *
     * <ul>
     *   <li>Memory footprint has a fixed overhead (about 24 bytes per instance).
     *   <li><i>Some</i> construction use cases force the data to be copied (though several construction
     *       APIs are offered that don't).
     *   <li>Can't be passed directly to methods that expect {@code int[]} (though the most common
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

                }
    
                // Simulate thumbnail generation
                try {
                    if (!outputFile.exists()) {
                        outputFile.createNewFile();
                    }
                    // Write some dummy content to simulate actual thumbnail
                    Files.write(outputFile.toPath(), ("thumbnail-" + thumbnailId).getBytes());
                    return true;
                } catch (IOException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/security/first-steps.md

    ๐Ÿ‘ˆ โ†ฉ๏ธ โšซ๏ธ โš™๏ธ ๐ŸŽ ๐Ÿ“› ๐Ÿ—„ ๐Ÿ”Œ. ๐Ÿ‘ˆ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐ŸŒ… ๐Ÿ”ƒ ๐Ÿ™† ๐Ÿ‘ซ ๐Ÿ’‚โ€โ™‚ โš– ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ“ &amp; ๐Ÿ“‹ โšซ๏ธ ๐Ÿ”Ž ๐ŸŒ– โ„น ๐Ÿ”ƒ โšซ๏ธ.
    
    ///
    
    `oauth2_scheme` ๐Ÿ”ข ๐Ÿ‘ `OAuth2PasswordBearer`, โœ‹๏ธ โšซ๏ธ "๐Ÿ‡ง๐Ÿ‡ฒ".
    
    โšซ๏ธ ๐Ÿ’ช ๐Ÿค™:
    
    ```Python
    oauth2_scheme(some, parameters)
    ```
    
    , โšซ๏ธ ๐Ÿ’ช โš™๏ธ โฎ๏ธ `Depends`.
    
    ### โš™๏ธ โšซ๏ธ
    
    ๐Ÿ”œ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ‘ˆ `oauth2_scheme` ๐Ÿ”— โฎ๏ธ `Depends`.
    
    {* ../../docs_src/security/tutorial001.py hl[10] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/ja/docs/tutorial/cookie-param-models.md

    ใ‚‚ใ—ใ‚ฏใƒฉใ‚คใ‚ขใƒณใƒˆใŒ**ไฝ™ๅˆ†ใชใ‚ฏใƒƒใ‚ญใƒผ**ใ‚’้€ใ‚ใ†ใจใ™ใ‚‹ใจใ€**ใ‚จใƒฉใƒผ**ใƒฌใ‚นใƒใƒณใ‚นใŒ่ฟ”ใ•ใ‚Œใพใ™ใ€‚
    
    <abbr title="ใ“ใ‚Œใ‚‚ใ‚ธใƒงใƒผใ‚ฏใงใ™ใ€‚ๆฐ—ใซใ—ใชใ„ใงใใ ใ•ใ„ใ€‚ใ‚ฏใƒƒใ‚ญใƒผใฎใŠไพ›ใซใ‚ณใƒผใƒ’ใƒผใงใ‚‚้ฃฒใ‚“ใงใใ ใ•ใ„ใ€‚โ˜• ๏ผˆๅŽŸๆ–‡: This is another joke. Don't pay attention to me. Have some coffee for your cookie. โ˜•๏ผ‰">ใฉใ†ใ›APIใซๆ‹’ๅฆใ•ใ‚Œใ‚‹ใฎใซ</abbr>ใ‚ใชใŸใฎๅŒๆ„ใ‚’ๅพ—ใ‚ˆใ†ใจ็ฒพไธ€ๆฏๅŠชๅŠ›ใ™ใ‚‹ๅฏๅ“€ๆƒณใชใ‚ฏใƒƒใ‚ญใƒผใƒใƒŠใƒผใŸใก... ๐Ÿช
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Feb 28 14:21:27 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

            assertTrue(BloomFilter.optimalNumOfBits(n, fpp) >= 0);
          }
        }
    
        // some random values
        Random random = new Random(0);
        for (int repeats = 0; repeats < 10000; repeats++) {
          assertTrue(BloomFilter.optimalNumOfBits(random.nextInt(1 << 16), random.nextDouble()) >= 0);
        }
    
        // and some crazy values (this used to be capped to Integer.MAX_VALUE, now it can go bigger
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2_test.go

    	}
    }
    
    func TestXLV2FormatData(t *testing.T) {
    	failOnErr := func(err error) {
    		t.Helper()
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	data := []byte("some object data")
    	data2 := []byte("some other object data")
    
    	xl := xlMetaV2{}
    	fi := FileInfo{
    		Volume:           "volume",
    		Name:             "object-name",
    		VersionID:        "756100c6-b393-4981-928a-d49bbc164741",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 37.8K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

        values =
            copyToList(
                getSubjectGenerator()
                    .getSampleElements(getSubjectGenerator().getCollectionSize().getNumElements()));
        sort(values, navigableSet.comparator());
    
        // some tests assume SEVERAL == 3
        if (values.size() >= 1) {
          a = values.get(0);
          if (values.size() >= 3) {
            b = values.get(1);
            c = values.get(2);
          }
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java

            assertThrows(RuntimeException.class, () -> {
                smb.readString(buffer, 0, 10, false);
            });
        }
    
        @Test
        void testEncodeDecode() {
            // Setup SMB with some data
            smb.command = ServerMessageBlock.SMB_COM_ECHO;
            smb.mid = 123;
            smb.pid = 456;
            smb.tid = 789;
            smb.uid = 101;
            smb.flags2 = ServerMessageBlock.FLAGS2_UNICODE;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit tests of {@link TypeResolver}.
     *
     * @author Ben Yu
     */
    @AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations?
    @NullUnmarked
    public class TypeResolverTest extends TestCase {
    
      public void testWhere_noMapping() {
        Type t = aTypeVariable();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

        }
      }
    
      private static boolean equal(@Nullable Object a, @Nullable Object b) {
        return a == b || (a != null && a.equals(b));
      }
    
      // This one-liner saves us from some ugly casts
      protected Entry<K, V> entry(K key, V value) {
        return mapEntry(key, value);
      }
    
      @Override
      protected void expectContents(Collection<Entry<K, V>> expected) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top