Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,222 for crashes (0.16 sec)

  1. src/runtime/runtime_unix_test.go

    	"sync/atomic"
    	"syscall"
    	"testing"
    )
    
    func TestGoroutineProfile(t *testing.T) {
    	// GoroutineProfile used to use the wrong starting sp for
    	// goroutines coming out of system calls, causing possible
    	// crashes.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(100))
    
    	var stop uint32
    	defer atomic.StoreUint32(&stop, 1) // in case of panic
    
    	var wg sync.WaitGroup
    	for i := 0; i < 4; i++ {
    		wg.Add(1)
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. pkg/fuzz/README.md

          Namespace:       node.ConfigNamespace,
          WorkloadLabels:  node.Labels,
        }
        option := fuzz.Struct[Option](fg)
    
        // Run our actual test code. In this case, we are just checking nothing crashes.
        // In other tests, explicit assertions may be helpful.
        policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
        New(bundle, push, policies, option).BuildHTTP()
      })
    }
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractFirPluginPrototypeCompilerFacilityTestWithAnalysis.kt

    /**
     * The IDE can run analysis before calling CodeGen API. We found some cases that generate different FIR expressions between analysis
     * and CodeGen API. For example, AA generates `FirLiteralExpression` for an initializer of a property, while CodeGen API generates
     * `FirLazyExpression`. The difference can result in crashes. This class helps us test the IDE situation that first calls analysis
     * APIs and conducts CodeGen.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/CrashingBuildsArtifactTransformIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest
    
    class CrashingBuildsArtifactTransformIntegrationTest extends AbstractDependencyResolutionTest {
        def "cleans up cached output after build process crashes during transform"() {
            given:
            buildFile << """
    
    enum Color { Red, Green, Blue }
    def type = Attribute.of("artifactType", String)
    
    abstract class ToColor implements TransformAction<Parameters> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              sudo rm /var/run/secrets/istio/key.pem
              sudo chown -R istio-proxy /var/run/secrets
    
              # Change coredump directory to the correct user. Note this is a volume so we persist between crashes
              sudo chown -R istio-proxy:istio-proxy /var/lib/istio/data
    
              # place mounted bootstrap files (token is mounted directly to the correct location)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # a worker process terminates without communicating the crashing input back
    # to the coordinator.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Start fuzzing. The worker crashes after 100 iterations.
    # The fuzz function writes the crashing input to "want" before exiting.
    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    ! exists want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/runtime/syscall_solaris.go

    func syscall_getpid() (pid, err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_getpid)),
    		n:    0,
    		args: uintptr(unsafe.Pointer(&libc_getpid)), // it's unused but must be non-nil, otherwise crashes
    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	return call.r1, call.err
    }
    
    //go:nosplit
    //go:linkname syscall_ioctl
    //go:cgo_unsafe_args
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/ObjectConnectionBuilder.java

         * This may happen because the peer has signalled that it has finished sending messages, or closes the connection, or crashes. It may also happen when
         * this side of the connection is closed using {@link ObjectConnection#stop()}.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/runtime/debug/example_monitor_test.go

    		log.SetFlags(0)
    		log.SetPrefix("monitor: ")
    
    		crash, err := io.ReadAll(os.Stdin)
    		if err != nil {
    			log.Fatalf("failed to read from input pipe: %v", err)
    		}
    		if len(crash) == 0 {
    			// Parent process terminated without reporting a crash.
    			os.Exit(0)
    		}
    
    		// Save the crash report securely in the file system.
    		f, err := os.CreateTemp("", "*.crash")
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        )
    
        failureConditions {
            // JavaExecDebugIntegrationTest.debug session fails without debugger might cause JVM crash
            // Some soak tests produce OOM exceptions
            // There are also random worker crashes for some tests.
            // We have test-retry to handle the crash in tests
            javaCrash = false
        }
    })
    
    private fun determineFlakyTestStrategy(stage: Stage): String {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top