Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 198 for accidentally (0.18 sec)

  1. src/sync/atomic/value.go

    		if typ == nil {
    			// Attempt to start first store.
    			// Disable preemption so that other goroutines can use
    			// active spin wait to wait for completion; and so that
    			// GC does not see the fake type accidentally.
    			runtime_procPin()
    			if !CompareAndSwapPointer(&vp.typ, nil, unsafe.Pointer(&firstStoreInProgress)) {
    				runtime_procUnpin()
    				continue
    			}
    			// Complete first store.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/gotoolchain_path.txt

    )
    
    func main() {
    	exe, _ := os.Executable()
    	name := filepath.Base(exe)
    	name = strings.TrimSuffix(name, ".exe")
    	fmt.Fprintf(os.Stderr, "running %s from PATH\n", name)
    	os.Exit(1) // fail in case we are running this accidentally (like in "go mod edit")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 22:21:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	_, exists := s.postStartHooks[name]
    	return exists
    }
    
    func runPostStartHook(name string, entry postStartHookEntry, context PostStartHookContext) {
    	var err error
    	func() {
    		// don't let the hook *accidentally* panic and kill the server
    		defer utilruntime.HandleCrash()
    		err = entry.hook(context)
    	}()
    	// if the hook intentionally wants to kill server, let it.
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

                        def nonLauncherOrCoreClass = "org.gradle.api.reporting.Report"
    
                        // Check that this is a dependency (to verify that the class is not accidentally removed and so make the test verify nothing)
                        assert Class.forName(nonLauncherOrCoreClass) != null
    
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/util/yml/parts.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	joinSeparator = "\n---\n"
    )
    
    // Split where the '---' appears at the very beginning of a line. This will avoid
    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // Regression test for an issue found in development.
    //
    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. releasenotes/notes/external-name.yaml

          * Ports not declared as `HTTP` would match *all* traffic on that port, making it easy to accidentally send all traffic on a port to the wrong place.
          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    type PartialObjectMetadata = v1.PartialObjectMetadata
    
    // IMPORTANT: PartialObjectMetadataList has different protobuf field ids in v1beta1 than
    // v1 because ListMeta was accidentally omitted prior to 1.15. Therefore this type must
    // remain independent of v1.PartialObjectMetadataList to preserve mappings.
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    # didn't contain any information about the C compiler.
    # Since the bug was in cache key computation, isolate the cache:
    # if we change the way caching works, we want the test to fail
    # instead of accidentally reusing the cached information from a
    # previous test run.
    env GOCACHE=$WORK${/}.cache
    mkdir $GOCACHE
    
    go build -x runtime/cgo
    
    	# Tell our fake clang to stop working.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/stackswitch.c

    	printf("SKIP\n");
    	exit(0);
    }
    #else
    
    // Use a stack size larger than the 32kb estimate in
    // runtime.callbackUpdateSystemStack. This ensures that a second stack
    // allocation won't accidentally count as in bounds of the first stack
    #define STACK_SIZE	(64ull << 10)
    
    static ucontext_t uctx_save, uctx_switch;
    
    extern void stackSwitchCallback(void);
    
    char *stack2;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top