Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,237 for startingAt (0.23 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/SequentialOutputMatcher.groovy

                Assert.fail("Lines missing from actual result, starting at line ${pos + 1}.${NL}Expected: ${expectedLines[pos]}${NL}Actual output:${NL}$actual${NL}---")
            }
            if (!ignoreExtraLines && pos < actualLines.size() && pos == expectedLines.size()) {
                Assert.fail("Extra lines in actual result, starting at line ${pos + 1}.${NL}Actual: ${actualLines[pos]}${NL}Actual output:${NL}$actual${NL}---")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_errors_pos.txt

    # Test case for #67623 in go.mod files: make sure the error for
    # an unknown godebug is printed on a line starting with the file
    # and line number, so it can be easily parsed by tools.
    
    ! go list
    stderr '^go.mod:3: unknown godebug "foo"$'
    
    -- go.mod --
    module example.com/bar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 290 bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/migrator.go

    	}
    
    	// Start current version of etcd.
    	runner := m.newServer()
    	klog.Infof("Starting etcd version %s to capture rollback snapshot.", current.version)
    	err = runner.Start(current.version)
    	if err != nil {
    		klog.Fatalf("Unable to automatically downgrade etcd: starting etcd version %s to capture rollback snapshot failed: %v", current.version, err)
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. src/runtime/debug/heapdump_test.go

    	runtime.SetFinalizer(x, objfin)
    	y := &Obj{}
    	runtime.SetFinalizer(y, objfin)
    
    	// Trigger collection of x and y, queueing of their finalizers.
    	println("starting gc")
    	runtime.GC()
    
    	// Make sure WriteHeapDump doesn't fail with multiple queued finalizers.
    	println("starting dump")
    	WriteHeapDump(f.Fd())
    	println("done dump")
    }
    
    type G[T any] struct{}
    type I interface {
    	M()
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. 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
    - 33K bytes
    - Viewed (0)
  6. cluster/kube-up.sh

    if [ -f "${KUBE_ROOT}/cluster/env.sh" ]; then
        source "${KUBE_ROOT}/cluster/env.sh"
    fi
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    if [ -z "${ZONE-}" ]; then
      echo "... Starting cluster using provider: ${KUBERNETES_PROVIDER}" >&2
    else
      echo "... Starting cluster in ${ZONE} using provider ${KUBERNETES_PROVIDER}" >&2
    fi
    
    echo "... calling verify-prereqs" >&2
    verify-prereqs
    echo "... calling verify-kube-binaries" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 15:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top