Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 648 for endLine (0.13 sec)

  1. docs_src/sql_databases/sql_app_py310/tests/test_sql_app.py

    from ..database import Base
    from ..main import app, get_db
    
    SQLALCHEMY_DATABASE_URL = "sqlite:///./test.db"
    
    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    TestingSessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    
    Base.metadata.create_all(bind=engine)
    
    
    def override_get_db():
        try:
            db = TestingSessionLocal()
            yield db
        finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/internal/DefaultTransformSuccessResult.java

    public class DefaultTransformSuccessResult extends DefaultOperationSuccessResult implements TransformSuccessResult {
    
        public DefaultTransformSuccessResult(long startTime, long endTime) {
            super(startTime, endTime);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskSuccessResult.java

        private final boolean fromCache;
        private final TaskExecutionDetails taskExecutionDetails;
    
        public DefaultTaskSuccessResult(long startTime, long endTime, boolean upToDate, boolean fromCache, TaskExecutionDetails taskExecutionDetails) {
            super(startTime, endTime);
            this.upToDate = upToDate;
            this.fromCache = fromCache;
            this.taskExecutionDetails = taskExecutionDetails;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt

          .addQuicHint("www.google.com", 443, 443)
          .build()
    
      @After
      fun tearDown() {
        engine.shutdown()
        cacheDir.deleteRecursively()
      }
    
      @Test
      fun get() {
        val executor = Executors.newCachedThreadPool()
    
        val completableFuture = execute(engine, executor, "https://google.com/robots.txt")
    
        try {
          val response = completableFuture.get(10, TimeUnit.SECONDS)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 24 13:19:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/encoding/gob/decode.go

    	ovfl := errors.New(`value for "` + name + `" out of range`)
    	engine.instr[singletonField] = decInstr{*op, singletonField, nil, ovfl}
    	engine.numInstr = 1
    	return
    }
    
    // compileIgnoreSingle compiles the decoder engine for a non-struct top-level value that will be discarded.
    func (dec *Decoder) compileIgnoreSingle(remoteId typeId) *decEngine {
    	engine := new(decEngine)
    	engine.instr = make([]decInstr, 1) // one item
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/internal/DefaultProjectConfigurationFailureResult.java

        private final List<? extends PluginApplicationResult> pluginApplicationResults;
    
        public DefaultProjectConfigurationFailureResult(long startTime, long endTime, List<? extends Failure> failures, List<? extends PluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime, failures);
            this.pluginApplicationResults = pluginApplicationResults;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTaskResult.java

        private final boolean incremental;
        private final List<String> executionReasons;
    
        protected AbstractTaskResult(long startTime, long endTime, String outcomeDescription, boolean incremental, List<String> executionReasons) {
            super(startTime, endTime, outcomeDescription);
            this.incremental = incremental;
            this.executionReasons = executionReasons;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestOutputResult.java

        private final int destination;
        private final String message;
    
        public DefaultTestOutputResult(long startTime, long endTime, int destination, String message) {
            super(startTime, endTime, "succeeded");
            this.destination = destination;
            this.message = message;
        }
    
        @Override
        public int getDestination() {
            return destination;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/internal/DefaultTransformFailureResult.java

    public class DefaultTransformFailureResult extends DefaultOperationFailureResult implements TransformFailureResult {
    
        public DefaultTransformFailureResult(long startTime, long endTime, List<? extends Failure> failures) {
            super(startTime, endTime, failures);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFileDownloadSuccessResult.java

        private final long bytesDownloaded;
    
        public DefaultFileDownloadSuccessResult(long startTime, long endTime, long bytesDownloaded) {
            super(startTime, endTime);
            this.bytesDownloaded = bytesDownloaded;
        }
    
        @Override
        public long getBytesDownloaded() {
            return bytesDownloaded;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 21 23:09:51 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top