Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 81 for traces (0.12 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    	if err == nil {
    		t.Errorf("Expected an error exceeding quota")
    	}
    }
    
    // TestAdmitEnforceQuotaConstraints verifies that if a quota tracks a particular resource that that resource is
    // specified on the pod.  In this case, we create a quota that tracks cpu request, memory request, and memory limit.
    // We ensure that a pod that does not specify a memory limit that it fails in admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a bug where hard evictions due to resource pressure would let the pod have the full termination grace period, instead of shutting down instantly. This bug also affected force deleted pods. Both cases now get a termination grace period of 1 second. ([#124063](https://github.com/kubernetes/kubernetes/pull/124063), [@olyazavr](https://github.com/olyazavr)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	}
    }
    
    func TestHandshakeRace(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	t.Parallel()
    	// This test races a Read and Write to try and complete a handshake in
    	// order to provide some evidence that there are no races or deadlocks
    	// in the handshake locking.
    	for i := 0; i < 32; i++ {
    		c, s := localPipe(t)
    
    		go func() {
    			server := Server(s, testConfig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            collection.convention(collection + src5)
    
            then:
            collection.files as List == [file3, file2, file5]
            !collection.explicit
        }
    
        def "elements provider tracks changes to content"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def callable = Mock(Callable)
    
            collection.from(callable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	case spanAllocWorkBuf:
    		atomic.Xaddint64(&stats.inWorkBufs, int64(nbytes))
    	}
    	memstats.heapStats.release()
    
    	// Trace the span alloc.
    	if traceAllocFreeEnabled() {
    		trace := traceTryAcquire()
    		if trace.ok() {
    			trace.SpanAlloc(s)
    			traceRelease(trace)
    		}
    	}
    	return s
    }
    
    // initSpan initializes a blank span s which will represent the range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // also update its value. `control_above` means that this Block is within
    // control flow, which is not currently supported with map_outside_compilation.
    // `is_map_oc` tracks whether map_outside_compilation is used, for the whole
    // program. Currently only map_outside_compilation-only or ordinary
    // outside_compilation only is supported.
    LogicalResult MoveToHostMultiCluster(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

    
    ## Version 3.14.3
    
    _2019-09-10_
    
     *  Fix: Don't lose HTTP/2 flow control bytes when incoming data races with a stream close. If this
        happened enough then eventually the connection would stall.
    
     *  Fix: Acknowledge and apply inbound HTTP/2 settings atomically. Previously we had a race where we
        could use new flow control capacity before acknowledging it, causing strict HTTP/2 servers to
        fail the call.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       * listeners for future n may complete before some for future n-1.) However, it is possible, if
       * one input completes with result X and another later with result Y, for Y to come before X in
       * the output future list. (Such races are impossible to solve without global synchronization of
       * all future completions. And they should have little practical impact.)
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    // The code for the second panic can be removed.
    //
    // prove works by finding contradictions and trimming branches whose
    // conditions are unsatisfiable given the branches leading up to them.
    // It tracks a "fact table" of branch conditions. For each branching
    // block, it asserts the branch conditions that uniquely dominate that
    // block, and then separately asserts the block's branch condition and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package trace
    
    import (
    	"fmt"
    	"strings"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/version"
    )
    
    // ordering emulates Go scheduler state for both validation and
    // for putting events in the right order.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top