Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,097 for startingAt (0.35 sec)

  1. cmd/batch-expire_test.go

          tags:
            - key: name
              value: pick* # match objects with tag 'name', all values starting with 'pick'
          metadata:
            - key: content-type
              value: image/* # match objects with 'content-type', all values starting with 'image/'
          size:
            lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogAndCheckHealth.java

            int nextBuildNum = runningStats.getBuildCount() + 1;
            if (nextBuildNum == 1) {
                return String.format("Starting build in new daemon [memory: %s]", NumberUtil.formatBytes(Runtime.getRuntime().maxMemory()));
            } else {
                return String.format("Starting %s build in daemon %s", NumberUtil.ordinal(nextBuildNum), stats.getHealthInfo());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pkg/controller/nodeipam/node_ipam_controller.go

    	serviceCIDR *net.IPNet,
    	secondaryServiceCIDR *net.IPNet,
    	nodeCIDRMaskSizes []int,
    	allocatorType ipam.CIDRAllocatorType) (*Controller, error) {
    
    	if kubeClient == nil {
    		return nil, fmt.Errorf("kubeClient is nil when starting Controller")
    	}
    
    	// Cloud CIDR allocator does not rely on clusterCIDR or nodeCIDRMaskSize for allocation.
    	if allocatorType != ipam.CloudAllocatorType {
    		if len(clusterCIDRs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. releasenotes/notes/44152.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 29394
    releaseNotes:
      - |
        **Removed** operator skip reconcile for iop resources with names starting with `installed-state`. It now relies solely on the annotation `install.istio.io/ignoreReconcile`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 31 14:28:49 UTC 2023
    - 334 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top