Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 648 for endLine (0.18 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/NotFoundFileDownloadSuccessResult.java

    public class NotFoundFileDownloadSuccessResult extends AbstractOperationResult implements InternalSuccessResult, InternalNotFoundFileDownloadResult {
        public NotFoundFileDownloadSuccessResult(long startTime, long endTime) {
            super(startTime, endTime, "not found");
        }
    
        @Override
        public long getBytesDownloaded() {
            return 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 12:41:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/internal/DefaultProjectConfigurationSuccessResult.java

        private final List<? extends PluginApplicationResult> pluginApplicationResults;
    
        public DefaultProjectConfigurationSuccessResult(long startTime, long endTime, List<? extends PluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime);
            this.pluginApplicationResults = pluginApplicationResults;
        }
    
        @Override
        public List<? extends PluginApplicationResult> getPluginApplicationResults() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. docs_src/sql_databases/sql_app/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: Sun Apr 05 11:53:09 UTC 2020
    - 461 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

                points.add(new TimePoint(it, it.startTime))
                points.add(new TimePoint(it, it.endTime, true))
            }
    
            def concurrentOperations = []
            points.sort().each {
                if (it.end) {
                    concurrentOperations.remove(it.operation)
                } else {
                    if ((it.operation.endTime - it.operation.startTime) > 0) {
                        concurrentOperations.add(it.operation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/resources/lasta_di.properties

    smart.deploy.mode.location = fess_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.app
    
    # script engine
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Apr 05 21:04:36 UTC 2019
    - 457 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. 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)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractProjectConfigurationResult.java

        private final List<? extends InternalPluginApplicationResult> pluginApplicationResults;
    
        public AbstractProjectConfigurationResult(long startTime, long endTime, String outcomeDescription, List<? extends InternalPluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime, outcomeDescription);
            this.pluginApplicationResults = pluginApplicationResults;
        }
    
        @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)
Back to top