Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 970 for Starting (0.22 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                run.executable 'does-not-exist'
            """
    
            when:
            fails taskName
    
            then:
            failure.assertThatCause(containsText("A problem occurred starting process"))
            failure.assertHasNoCause("could not be started because the command line exceed operating system limits.")
    
            where:
            method                    | taskName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/gc-stress.go

    	sink = make([][]byte, procs)
    
    	for i := 0; i < procs; i++ {
    		i := i
    		go func() {
    			for {
    				sink[i] = make([]byte, 4<<10)
    			}
    		}()
    	}
    	// Increase the chance that we end up starting and stopping
    	// mid-GC by only starting to trace after a few milliseconds.
    	time.Sleep(5 * time.Millisecond)
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    		if !rc.desiredStateOfWorld.PodExistsInVolume(mountedVolume.PodName, mountedVolume.VolumeName, mountedVolume.SELinuxMountContext) {
    			// Volume is mounted, unmount it
    			klog.V(5).InfoS(mountedVolume.GenerateMsgDetailed("Starting operationExecutor.UnmountVolume", ""))
    			err := rc.operationExecutor.UnmountVolume(
    				mountedVolume.MountedVolume, rc.actualStateOfWorld, rc.kubeletPodsDir)
    			if err != nil && !isExpectedError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is line number 1.
         * A non-positive value indicates that the column information is not available.
         *
         * @return the column
         */
        int getColumn();
    
        /**
         * The length of the selected content starting from specified column.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/common.go

    	// InstallTree is a top down hierarchy tree of dependencies where children must wait for the parent to complete
    	// before starting installation.
    	InstallTree = make(ComponentTree)
    )
    
    // buildInstallTree builds a tree from buildInstallTree where parents are the root of each subtree.
    func buildInstallTree() {
    	// Starting with root, recursively insert each first level child into each node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LinePreservingSubstringTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class LinePreservingSubstringTest {
    
        @Test
        fun `given a range starting after the first line, it should return a substring prefixed by blank lines`() {
            val original = """
                // line 1
                // line 2
                buildscript {
                    // line 4
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         * @since 8.6
         */
        int getLine();
    
        /**
         * The starting column on the selected line.
         * <p>
         * The column is <b>one-indexed</b>, i.e. the first column in the file is column number 1.
         * A non-positive value indicates that the column information is not available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/os/exec_unix_test.go

    	"testing"
    )
    
    func TestErrProcessDone(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	p, err := StartProcess(testenv.GoToolPath(t), []string{"go"}, &ProcAttr{})
    	if err != nil {
    		t.Fatalf("starting test process: %v", err)
    	}
    	p.Wait()
    	if got := p.Signal(Kill); got != ErrProcessDone {
    		t.Errorf("got %v want %v", got, ErrProcessDone)
    	}
    }
    
    // Lookup of a process that does not exist at time of lookup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top