Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 648 for endLine (0.24 sec)

  1. docs_src/sql_databases/sql_app_py310/database.py

    SQLALCHEMY_DATABASE_URL = "sqlite:///./sql_app.db"
    # SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    
    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  2. docs_src/sql_databases/sql_app_py39/database.py

    SQLALCHEMY_DATABASE_URL = "sqlite:///./sql_app.db"
    # SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    
    engine = create_engine(
        SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
    )
    SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 461 bytes
    - Viewed (0)
  3. tools/bug-report/pkg/config/config.go

    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    	// If set, StartTime must be unset.
    	Since Duration `json:"since,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionInstaller.java

                } catch (Throwable t) {
                    failure = t;
                }
    
                long endTime = clock.getCurrentTime();
                FileDownloadResult result = failure == null ? new DefaultFileDownloadSuccessResult(startTime, endTime, bytesDownloaded) : new DefaultFileDownloadFailureResult(startTime, endTime, Collections.singletonList(DefaultFailure.fromThrowable(failure)), bytesDownloaded);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/cmd/trace/pprof.go

    	for _, g := range t.summary.Goroutines {
    		if name != "" && g.Name != name {
    			continue
    		}
    		endTime := g.EndTime
    		if g.EndTime == 0 {
    			endTime = t.endTime() // Use the trace end time, since the goroutine is still live then.
    		}
    		res[g.ID] = []interval{{start: g.StartTime, end: endTime}}
    	}
    	if len(res) == 0 {
    		return nil, fmt.Errorf("failed to find matching goroutines for name: %s", name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                    "test",
                    "junit-jupiter-params-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-jupiter-engine-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-jupiter-api-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-platform-engine-${JUNIT_PLATFORM_VERSION}.jar",
                    "junit-platform-commons-${JUNIT_PLATFORM_VERSION}.jar",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/shared/run.cmd

    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    if exist "%USERPROFILE%\mavenrc_post.bat" echo Warning: The mavenrc_post.bat script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/storage.go

    }
    
    func timestamp(t time.Time) float64 {
    	if t.IsZero() {
    		return 0
    	}
    	return float64(t.Unix())
    }
    
    type state struct {
    	StartTime time.Time `json:"startTime"`
    	EndTime   time.Time `json:"endTime"`
    }
    
    // atomicWrite atomically writes data to a file specified by filename.
    func atomicWrite(filename string, data []byte, perm os.FileMode) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. src/internal/coverage/test/roundtrip_test.go

    		Srcfile:  "bar.go",
    		Units: []coverage.CoverableUnit{
    			coverage.CoverableUnit{StLine: 1, StCol: 2, EnLine: 3, EnCol: 4, NxStmts: 5},
    			coverage.CoverableUnit{StLine: 6, StCol: 7, EnLine: 8, EnCol: 9, NxStmts: 10},
    			coverage.CoverableUnit{StLine: 11, StCol: 12, EnLine: 13, EnCol: 14, NxStmts: 15},
    		},
    	}
    	idx = b.AddFunc(f2)
    	if idx != 1 {
    		t.Errorf("b.AddFunc(f2) got %d want %d", idx, 0)
    	}
    
    	// Emit into a writer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/JobLogDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnEndTime = cci("endTime", "endTime", null, null, Long.class, "endTime", null, false, false, false,
                "Long", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top