Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for stops (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            finishedExecuting(second)
            finishedExecuting(first)
    
            then:
            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20508")
        def "stops executing nodes after failure when priority node has already executed"() {
            def node = priorityNode()
            def broken = task("broken", failure: new RuntimeException())
            def task = task("task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. src/testing/testing.go

    }
    
    // FailNow marks the function as having failed and stops its execution
    // by calling runtime.Goexit (which then runs all deferred calls in the
    // current goroutine).
    // Execution will continue at the next test or benchmark.
    // FailNow must be called from the goroutine running the
    // test or benchmark function, not from other goroutines
    // created during the test. Calling FailNow does not stop
    // those other goroutines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    // They control the amount of source code parsed and other optional
    // parser functionality.
    const (
    	PackageClauseOnly uint = 1 << iota // parsing stops after package clause
    	ImportsOnly                        // parsing stops after import declarations
    	ParseComments                      // parse comments and add them to AST
    	Trace                              // print a trace of parsed productions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// heapLive was updated, so emit a trace event.
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.HeapAlloc(bytesMarked)
    		traceRelease(trace)
    	}
    }
    
    // markWorkerStop must be called whenever a mark worker stops executing.
    //
    // It updates mark work accounting in the controller by a duration of
    // work in nanoseconds and other bookkeeping.
    //
    // Safe to execute at any time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	c.stopLock.RLock()
    	defer c.stopLock.RUnlock()
    	return c.stopped
    }
    
    // Stop implements the graceful termination.
    func (c *Cacher) Stop() {
    	c.stopLock.Lock()
    	if c.stopped {
    		// avoid stopping twice (note: cachers are shared with subresources)
    		c.stopLock.Unlock()
    		return
    	}
    	c.stopped = true
    	c.ready.stop()
    	c.stopLock.Unlock()
    	close(c.stopCh)
    	c.stopWg.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    // anything other than PropertyExpressions or
                    // VariableExpressions will stop resolving
                    return null;
                } else {
                    PropertyExpression current = (PropertyExpression) it;
                    String propertyPart = current.getPropertyAsString();
                    // the class property stops resolving, dynamic property names too
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.")
            }
        }
    
        def "stops reporting problems at certain limits"() {
            buildFile << """
                task all
            """
            for (i in 1..530) {
                buildFile << """
                    task broken$i { t ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    			require.Equal(t, int64(1), resourceAllocatable.Value(), "Devices of plugin previously registered should be removed.")
    			p2.Stop()
    			p3.Stop()
    			cleanup(t, m, p1)
    		}
    	}
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top