Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 648 for endLine (0.25 sec)

  1. istioctl/pkg/metrics/metrics_test.go

    func (client mockPromAPI) Config(ctx context.Context) (promv1.ConfigResult, error) {
    	return promv1.ConfigResult{}, nil
    }
    
    func (client mockPromAPI) DeleteSeries(ctx context.Context, matches []string, startTime time.Time, endTime time.Time) error {
    	return nil
    }
    
    func (client mockPromAPI) Flags(ctx context.Context) (promv1.FlagsResult, error) {
    	return nil, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 02:07:44 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                        <td><c:if test="${data.endTime!=null}">
                                                            <fmt:formatDate value="${fe:date(data.endTime)}"
                                                                            pattern="yyyy-MM-dd'T'HH:mm:ss"/>
                                                        </c:if> <c:if test="${data.endTime==null}">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  3. .teamcity/mvnw.cmd

    if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
    
    @REM Execute a user defined script before this one
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
    @REM check for pre script, once with legacy .bat ending and once with .cmd ending
    if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
    if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
    :skipRcPre
    
    @setlocal
    
    set ERROR_CODE=0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  4. src/go/internal/srcimporter/srcimporter_test.go

    // prefix recursively. It returns the number of packages
    // imported and whether importing was aborted because time
    // has passed endTime.
    func walkDir(t *testing.T, path string, endTime time.Time) (int, bool) {
    	if time.Now().After(endTime) {
    		t.Log("testing time used up")
    		return 0, true
    	}
    
    	// ignore fake packages and testdata directories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. docs/docker/README.md

    ### Starting and Stopping Containers
    
    To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command.
    
    ```sh
    docker start <container_id>
    ```
    
    To stop a running container, you can use the [`docker stop`](https://docs.docker.com/engine/reference/commandline/stop/) command.
    
    ```sh
    docker stop <container_id>
    ```
    
    ### MinIO container logs
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (2)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpsServer.java

                    SSLContext c = getSSLContext();
                    SSLEngine engine = c.createSSLEngine();
                    params.setNeedClientAuth(needClientAuth);
                    params.setCipherSuites(engine.getEnabledCipherSuites());
                    // TLS protocols need to be filtered off both the HttpsParameters & SSLParameters
                    params.setProtocols(stripFilteredProtocols(engine.getEnabledProtocols()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs_src/sql_databases/sql_app/main.py

    from typing import List
    
    from fastapi import Depends, FastAPI, HTTPException
    from sqlalchemy.orm import Session
    
    from . import crud, models, schemas
    from .database import SessionLocal, engine
    
    models.Base.metadata.create_all(bind=engine)
    
    app = FastAPI()
    
    
    # Dependency
    def get_db():
        db = SessionLocal()
        try:
            yield db
        finally:
            db.close()
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 17 10:14:14 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

     * configuration for the build script and test framework.  Subclasses must provide test framework/engine specific
     * configuration for the build script.
     *
     * The following depicts the general pattern of implementation where function-specific tests extend from this class,
     * while framework/engine-specific classes extend from the function-specific classes.  The framework/engine-specific
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_trailing_slash.txt

    # go list should succeed to load a package ending with ".go" if the path does
    # not correspond to an existing local file. Listing a pattern ending with
    # ".go/" should try to list a package regardless of whether a file exists at the
    # path without the suffixed "/" or not.
    go list example.com/dotgo.go
    stdout ^example.com/dotgo.go$
    go list example.com/dotgo.go/
    stdout ^example.com/dotgo.go$
    
    # go get should succeed in either case, with or without a version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 982 bytes
    - Viewed (0)
  10. docs_src/async_sql_databases/tutorial001.py

        sqlalchemy.Column("text", sqlalchemy.String),
        sqlalchemy.Column("completed", sqlalchemy.Boolean),
    )
    
    
    engine = sqlalchemy.create_engine(
        DATABASE_URL, connect_args={"check_same_thread": False}
    )
    metadata.create_all(engine)
    
    
    class NoteIn(BaseModel):
        text: str
        completed: bool
    
    
    class Note(BaseModel):
        id: int
        text: str
        completed: bool
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top