Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 373 for 13 (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    - The NamespaceExists and NamespaceAutoProvision admission controllers have been removed, use the NamespaceLifecycle admission controller instead (#31250, @derekwaynecarr)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/Config.java

            String ver, pkgs;
    
            ver = System.getProperty( "java.version" );
            if( ver.startsWith( "1.1." ) || ver.startsWith( "1.2." )) {
                 throw new RuntimeException( "jcifs.smb1-0.7.0b4+ requires Java 1.3 or above. You are running " + ver );
            }
            pkgs = System.getProperty( "java.protocol.handler.pkgs" );
            if( pkgs == null ) {
                System.setProperty( "java.protocol.handler.pkgs", "jcifs.smb1" );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/body-nested-models.md

    ```
    
    :
    
    //// tab | 🐍 3️⃣.6️⃣ & πŸ”›
    
    ```Python hl_lines="15"
    {!> ../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    ////
    
    //// tab | 🐍 3️⃣.9️⃣ & πŸ”›
    
    ```Python hl_lines="13"
    {!> ../../docs_src/body_nested_models/tutorial008_py39.py!}
    ```
    
    ////
    
    ## πŸ‘¨β€πŸŽ¨ πŸ•β€πŸ¦Ί 🌐
    
    & πŸ‘† 🀚 πŸ‘¨β€πŸŽ¨ πŸ•β€πŸ¦Ί 🌐.
    
    🏬 πŸ”˜ πŸ“‡:
    
    <img src="/img/tutorial/body-nested-models/image01.png">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/BloomFilterStrategies.java

              bytes[7], bytes[6], bytes[5], bytes[4], bytes[3], bytes[2], bytes[1], bytes[0]);
        }
    
        private /* static */ long upperEight(byte[] bytes) {
          return Longs.fromBytes(
              bytes[15], bytes[14], bytes[13], bytes[12], bytes[11], bytes[10], bytes[9], bytes[8]);
        }
      };
    
      /**
       * Models a lock-free array of bits.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  5. internal/lsync/lrwmutex_test.go

    // Borrowed from rwmutex_test.go
    func TestRWMutex(t *testing.T) {
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(-1))
    	n := 1000
    	if testing.Short() {
    		n = 5
    	}
    	HammerRWMutex(1, 1, n)
    	HammerRWMutex(1, 3, n)
    	HammerRWMutex(1, 10, n)
    	HammerRWMutex(4, 1, n)
    	HammerRWMutex(4, 3, n)
    	HammerRWMutex(4, 10, n)
    	HammerRWMutex(10, 1, n)
    	HammerRWMutex(10, 3, n)
    	HammerRWMutex(10, 10, n)
    	HammerRWMutex(10, 5, n)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java

        assertFalse(multimap.containsEntry("foo", 5));
        assertFalse(multimap.entries().isEmpty());
        assertEquals(3, multimap.size());
        assertFalse(multimap.isEmpty());
        assertEquals("{foo=[1, 3], bar=[2]}", multimap.toString());
      }
    
      public void testMultimapWrites() {
        Multimap<String, Integer> multimap = createMultimap();
        UnmodifiableCollectionTests.assertMultimapIsUnmodifiable(multimap, "bar", 2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/avx512enc/avx512bw.s

    	VPCMPUB $121, 15(R8)(R14*2), X14, K7, K6           // 62930d0f3eb4700f00000079
    	VPCMPUB $13, Y7, Y26, K2, K1                       // 62f32d223ecf0d
    	VPCMPUB $13, 17(SP)(BP*8), Y26, K2, K1             // 62f32d223e8cec110000000d
    	VPCMPUB $13, 17(SP)(BP*4), Y26, K2, K1             // 62f32d223e8cac110000000d
    	VPCMPUB $13, Y7, Y26, K2, K3                       // 62f32d223edf0d
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 159.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                }
            }
            if (values == null) {
                values = new ArrayList();
                values.add(value);
                requestProperties.put(key, values);
            }
            // 1.3-compatible.
            StringBuffer buffer = new StringBuffer();
            Iterator propertyValues = values.iterator();
            while (propertyValues.hasNext()) {
                buffer.append(propertyValues.next());
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  9. docs/en/data/people.yml

      url: https://github.com/wdh99
    - login: sh0nk
      count: 13
      avatarUrl: https://avatars.githubusercontent.com/u/6478810?u=af15d724875cec682ed8088a86d36b2798f981c0&v=4
      url: https://github.com/sh0nk
    - login: r0b2g1t
      count: 13
      avatarUrl: https://avatars.githubusercontent.com/u/5357541?u=6428442d875d5d71aaa1bb38bb11c4be1a526bc2&v=4
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/body-nested-models.md

    ```Python
    images: List[Image]
    ```
    
    Π² Python 3.9 ΠΈ Π²Ρ‹ΡˆΠ΅:
    
    ```Python
    images: list[Image]
    ```
    
    Π½Π°ΠΏΡ€ΠΈΠΌΠ΅Ρ€ Ρ‚Π°ΠΊ:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="13"
    {!> ../../docs_src/body_nested_models/tutorial008_py39.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="15"
    {!> ../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top