Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,237 for startingAt (0.2 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                    if (gradle.standardOutput ==~ /(?s).*Starting build in new daemon \[memory: [0-9].*/) {
                        newDaemons++;
                    }
                    if (newDaemons > 1) {
                        return true
                    }
                    def lines = gradle.standardOutput.readLines()
                    dataFile << lines[lines.findLastIndexOf { it.startsWith "Starting" }]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_sql_databases/test_testing_databases.py

        cwd = os.getcwd()
        os.chdir(tmp_path)
        test_db = Path("./test.db")
        if test_db.is_file():  # pragma: nocover
            test_db.unlink()
        # Import while creating the client to create the DB after starting the test session
        from docs_src.sql_databases.sql_app.tests import test_sql_app
    
        # Ensure import side effects are re-executed
        importlib.reload(test_sql_app)
        test_sql_app.test_create_user()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 788 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

          this.state = state;
        }
    
        @Override
        public void starting() {
          ServiceManagerState state = this.state.get();
          if (state != null) {
            state.transitionService(service, NEW, STARTING);
            if (!(service instanceof NoOpService)) {
              logger.get().log(Level.FINE, "Starting {0}.", service);
            }
          }
        }
    
        @Override
        public void running() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            if (currentState == ExecHandleState.STARTING) {
                if (hasCommandLineExceedMaxLength(command, arguments) && hasCommandLineExceedMaxLengthException(failureCause)) {
                    return format("Process '%s' could not be started because the command line exceed operating system limits.", displayName);
                }
                return format("A problem occurred starting process '%s'", displayName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/assets/templates/args.html

    {{ define "content" }}
    
    <p>
        The set of command-line arguments used when starting this process.
    </p>
    
    <table>
        <thead>
        <tr>
            <th>Index</th>
            <th>Value</th>
        </tr>
        </thead>
    
        <tbody>
            {{ range $index, $value := . }}
                <tr>
                    <td>{{$index}}</td>
                    <td>{{$value}}</td>
                </tr>
            {{ end }}
        </tbody>
    </table>
    
    <br>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 451 bytes
    - Viewed (0)
  6. releasenotes/notes/exit-if-sds-socket-not-found.yaml

    area: security
    issue:
    - 45534
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 22:42:46 UTC 2023
    - 313 bytes
    - Viewed (0)
  7. src/runtime/checkptr_test.go

    			}
    			if tc.want == "" {
    				if len(got) > 0 {
    					t.Errorf("output:\n%s\nwant no output", got)
    				}
    				return
    			}
    			if !strings.HasPrefix(string(got), tc.want) {
    				t.Errorf("output:\n%s\n\nwant output starting with: %s", got, tc.want)
    			}
    		})
    	}
    }
    
    func TestCheckPtr2(t *testing.T) {
    	// This test requires rebuilding packages with -d=checkptr=2,
    	// so it's somewhat slow.
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputStandardOutputRenderer.java

        public UserInputStandardOutputRenderer(OutputEventListener delegate, GlobalUserInputReceiver userInput) {
            super(delegate, userInput);
        }
    
        @Override
        void startInput() {
        }
    
        @Override
        void handlePrompt(RenderableOutputEvent event) {
            delegate.onOutput(event);
        }
    
        @Override
        void finishInput(RenderableOutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/JobHelper.java

            };
            findJobByUniqueOf(LaJobUnique.of(id)).ifPresent(job -> {
                if (!job.isUnscheduled()) {
                    if (StringUtil.isNotBlank(scheduledJob.getCronExpression())) {
                        logger.info("Starting Job {}:{}", id, scheduledJob.getName());
                        final String cronExpression = scheduledJob.getCronExpression();
                        job.reschedule(cronExpression, op -> op.changeNoticeLogToDebug().params(paramsOp));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/rand.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Starting in Go 1.20, the global rand is auto-seeded,
    // with a better value than the current Unix nanoseconds.
    // Only seed if we're using older versions of Go.
    
    //go:build !go1.20
    
    package main
    
    import (
    	"math/rand"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 442 bytes
    - Viewed (0)
Back to top