Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 811 for startm (0.11 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        // Once the root build starts configuring, we are in Configuring phase
                        phaseStarted(startEvent, Phase.Configuring);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_BUILD && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pkg/kube/multicluster/cluster.go

    	// This must be done before we build components, so they can access the filter.
    	namespaces := kclient.New[*corev1.Namespace](c.Client)
    	// This will start a namespace informer and wait for it to be ready. So we must start it in a go routine to avoid blocking.
    	filter := filter.NewDiscoveryNamespacesFilter(namespaces, mesh, c.stop)
    	kube.SetObjectFilter(c.Client, filter)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/internal/filepathlite/path_windows.go

    		return uncLen(path, len(`\\.\UNC\`))
    
    	case pathHasPrefixFold(path, `\\.`) ||
    		pathHasPrefixFold(path, `\\?`) || pathHasPrefixFold(path, `\??`):
    		// Path starts with \\.\, and is a Local Device path; or
    		// path starts with \\?\ or \??\ and is a Root Local Device path.
    		//
    		// We treat the next component after the \\.\ prefix as
    		// part of the volume name, which means Clean(`\\?\c:\`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        File getDirectory();
    
        String getCommand();
    
        List<String> getArguments();
    
        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

            executor.start()
            try {
                executor.execute(action)
            } finally {
                executor.stop(timeout)
            }
        }
    
        /**
         * Starts a test thread that will run the given action. The action may define instants for later querying.
         */
        void start(Runnable action) {
            executor.execute(action)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

        TestResultProcessor processor = Mock(TestResultProcessor)
        StandardOutputRedirector redir = Mock(StandardOutputRedirector)
    
        @Subject redirector = new TestOutputRedirector(processor, redir)
    
        def "starts redirecting output and error"() {
            when:
            redirector.setOutputOwner("1")
            redirector.startRedirecting()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  9. cmd/tier-last-day-stats.go

    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers
    type DailyAllTierStats map[string]lastDayTierStats
    
    func (l DailyAllTierStats) merge(m DailyAllTierStats) {
    	for tier, st := range m {
    		l[tier] = l[tier].merge(st)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         */
        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top