Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for 0731 (5.71 sec)

  1. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          notifyFailed(new IllegalStateException("stop failure"));
        }
      }
    
      public void testServiceStartupTimes() {
        if (isWindows() && isJava8()) {
          // Flaky there: https://github.com/google/guava/pull/6731#issuecomment-1736298607
          return;
        }
        Service a = new NoOpDelayedService(150);
        Service b = new NoOpDelayedService(353);
        ServiceManager serviceManager = new ServiceManager(asList(a, b));
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  2. cmd/metacache-set_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteBool(z.Versioned)
    	if err != nil {
    		err = msgp.WrapError(err, "Versioned")
    		return
    	}
    	// write "V1"
    	err = en.Append(0xa2, 0x56, 0x31)
    	if err != nil {
    		return
    	}
    	err = en.WriteBool(z.V1)
    	if err != nil {
    		err = msgp.WrapError(err, "V1")
    		return
    	}
    	// write "StopDiskAtLimit"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 19 20:23:12 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. tests/test_ws_router.py

            assert websocket.receive_text() == "Socket Dependency"
    
    
    def test_router_ws_depends_with_override():
        client = TestClient(app)
        app.dependency_overrides[ws_dependency] = lambda: "Override"  # noqa: E731
        with client.websocket_connect("/router-ws-depends/") as websocket:
            assert websocket.receive_text() == "Override"
    
    
    def test_router_with_params():
        client = TestClient(app)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jun 11 19:08:14 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          notifyFailed(new IllegalStateException("stop failure"));
        }
      }
    
      public void testServiceStartupTimes() {
        if (isWindows() && isJava8()) {
          // Flaky there: https://github.com/google/guava/pull/6731#issuecomment-1736298607
          return;
        }
        Service a = new NoOpDelayedService(150);
        Service b = new NoOpDelayedService(353);
        ServiceManager serviceManager = new ServiceManager(asList(a, b));
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/sql-databases.md

        {!> ../../../docs_src/sql_databases/sql_app_py310/schemas.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="15-17  31-34"
        {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="15-17  31-34"
        {!> ../../../docs_src/sql_databases/sql_app/schemas.py!}
        ```
    
    !!! tip
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/sql-databases.md

    🚫 🕴 🆔 📚 🏬, ✋️ 🌐 💽 👈 👥 🔬 Pydantic *🏷* 👂 🏬: `Item`.
    
    === "🐍 3️⃣.6️⃣ & 🔛"
    
        ```Python hl_lines="15-17  31-34"
        {!> ../../../docs_src/sql_databases/sql_app/schemas.py!}
        ```
    
    === "🐍 3️⃣.9️⃣ & 🔛"
    
        ```Python hl_lines="15-17  31-34"
        {!> ../../../docs_src/sql_databases/sql_app_py39/schemas.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ & 🔛"
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  7. cmd/xl-storage-format-v2_gen.go

    	err = en.WriteUint8(uint8(z.Type))
    	if err != nil {
    		err = msgp.WrapError(err, "Type")
    		return
    	}
    	if (zb0001Mask & 0x2) == 0 { // if not omitted
    		// write "V1Obj"
    		err = en.Append(0xa5, 0x56, 0x31, 0x4f, 0x62, 0x6a)
    		if err != nil {
    			return
    		}
    		if z.ObjectV1 == nil {
    			err = en.WriteNil()
    			if err != nil {
    				return
    			}
    		} else {
    			err = z.ObjectV1.EncodeMsg(en)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/object-api-datatypes_gen.go

    	o = msgp.AppendString(o, z.ChecksumCRC32C)
    	// string "ChecksumSHA1"
    	o = append(o, 0xac, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x53, 0x48, 0x41, 0x31)
    	o = msgp.AppendString(o, z.ChecksumSHA1)
    	// string "ChecksumSHA256"
    	o = append(o, 0xae, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x53, 0x48, 0x41, 0x32, 0x35, 0x36)
    	o = msgp.AppendString(o, z.ChecksumSHA256)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

          this.state = seed;
        }
    
        public double nextDouble() {
          state = 2862933555777941757L * state + 1;
          return ((double) ((int) (state >>> 33) + 1)) / 0x1.0p31;
        }
      }
    
      private Hashing() {}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
  10. docs/bucket/notifications/README.md

       }
    
      }()
     }))
    
     // Subscribe to subject
     subscribe()
    
     // Keep the connection alive
     runtime.Goexit()
    }
    
    ```
    
    ```
    go run nats.go
    2017/07/07 11:47:40 Connected
    2017/07/07 11:47:40 Subscribing to subject 'bucketevents'
    ```
    
    Open another terminal and upload a JPEG image into `images` bucket.
    
    ```
    mc cp myphoto.jpg myminio/images
    ```
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
Back to top