Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,248 for causing (0.16 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan12.go

    // TSAN runtime instead of making a sigaction system call. A bug in
    // syscall.runtime_AfterForkInChild corrupted TSAN's signal forwarding table
    // during calls to (*os/exec.Cmd).Run, causing the parent process to fail to
    // invoke signal handlers.
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"os/signal"
    	"syscall"
    )
    
    import "C"
    
    func main() {
    	ch := make(chan os.Signal, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 929 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/metrics.go

    var (
    	regenerationCounter = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "apiextensions_openapi_v2_regeneration_count",
    			Help:           "Counter of OpenAPI v2 spec regeneration count broken down by causing CRD name and reason.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"crd", "reason"},
    	)
    )
    
    func init() {
    	legacyregistry.MustRegister(regenerationCounter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 27 11:57:45 UTC 2019
    - 1K bytes
    - Viewed (0)
  3. cmd/postpolicyform.go

    // Add policy conditionals.
    const (
    	policyCondEqual         = "eq"
    	policyCondStartsWith    = "starts-with"
    	policyCondContentLength = "content-length-range"
    )
    
    // toString - Safely convert interface to string without causing panic.
    func toString(val interface{}) string {
    	switch v := val.(type) {
    	case string:
    		return v
    	default:
    		return ""
    	}
    }
    
    // toLowerString - safely convert interface to lower string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            "taskReport"            | []
            "propertyReport"        | []
            "htmlDependencyReport"  | []
            // projectReport depends on the other ones, and task order may not be preserved,
            // causing equality comparison between first and second outputs to fail
            //"projectReport"         | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprogcgo/needmdeadlock.go

    //go:build !plan9 && !windows
    // +build !plan9,!windows
    
    package main
    
    // This is for issue #42207.
    // During a call to needm we could get a SIGCHLD signal
    // which would itself call needm, causing a deadlock.
    
    /*
    #include <signal.h>
    #include <pthread.h>
    #include <sched.h>
    #include <unistd.h>
    
    extern void GoNeedM();
    
    #define SIGNALERS 10
    
    static void* needmSignalThread(void* p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

        def setup() {
            executer.requireIsolatedDaemons()
        }
    
        def "file system watching picks up changes causing a continuous build to rebuild"() {
            given:
            // Do not drop the VFS in the first build, since there is only one continuous build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/internal/poll/fd_io_plan9.go

    		n, err := fn(b)
    
    		aio.mu.Lock()
    		aio.pid = -1
    		runtime_unignoreHangup()
    		aio.mu.Unlock()
    
    		aio.res <- result{n, err}
    	}()
    	return aio
    }
    
    // Cancel interrupts the I/O operation, causing
    // the Wait function to return.
    func (aio *asyncIO) Cancel() {
    	aio.mu.Lock()
    	defer aio.mu.Unlock()
    	if aio.pid == -1 {
    		return
    	}
    	f, e := syscall.Open("/proc/"+itoa.Itoa(aio.pid)+"/note", syscall.O_WRONLY)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.h

    // unnecessary cluster recompilations in some common cases.  After the rewrite
    // shown above jit/partially_decluster_pass extracts the actual_size(...)
    // computation to outside the XLA cluster, causing the cluster to be versioned
    // only on the actual size of the XlaDynamicSlice.  This avoids recompilation
    // due to superficial changes that don't affect tensor shapes.
    //
    // Future Work TODO(b/111210515)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 26 21:01:34 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

            and: "multiple sub-projects"
            settingsFile << """
                include 'foo:foo'
                include 'bar:bar'
            """
    
            // Make the classpath of :foo differ from :bar's
            // thus causing :foo:foo and :bar:bar to have separate ClassLoaders.
            File someLib = file('lib/someLib.jar')
            jarWithClasses(someLib, SomeClass: 'class SomeClass {}')
    
            file("foo/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top