Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for resumption (0.47 sec)

  1. pkg/kubelet/pleg/generic.go

    // incident happens, GenenricPLEG would miss all events regarding this
    // container. In the case of relisting failure, the window may become longer.
    // Note that this assumption is not unique -- many kubelet internal components
    // rely on terminated containers as tombstones for bookkeeping purposes. The
    // garbage collector is implemented to work with such situations. However, to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. cmd/generic-handlers.go

    			return
    		}
    
    		bucket, object := request2BucketObjectName(r)
    
    		// Requests in federated setups for STS type calls which are
    		// performed at '/' resource should be routed by the muxer,
    		// the assumption is simply such that requests without a bucket
    		// in a federated setup cannot be proxied, so serve them at
    		// current server.
    		if bucket == "" {
    			h.ServeHTTP(w, r)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
       *   <li>If the constructor or factory method takes a parameter that {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    the pair (obj, TypeOf(fact)), and the ImportObjectFact function
    retrieves the entry from this map and copies its value into the variable
    pointed to by fact. This scheme assumes that the concrete type of fact
    is a pointer; this assumption is checked by the Validate function.
    See the "printf" analyzer for an example of object facts in action.
    
    Some driver implementations (such as those based on Bazel and Blaze) do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/index_ppc64x.s

    	BLE      index2to16         // Process remainder
    	BR       notfound           // Not found
    
    index5plus:
    	CMP R6, $16     // Check for sep > 16
    	BGT index17plus // Handle large sep
    
    	// Assumption is that the separator is smaller than the string at this point
    index2to16:
    	CMP R7, LASTSTR // Compare last start byte
    	BGT notfound    // last takes len(sep) into account
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/HashBiMap.java

        final int valueHash;
    
        // All BiEntry instances are strongly reachable from owning HashBiMap through
        // "HashBiMap.hashTableKToV" and "BiEntry.nextInKToVBucket" references.
        // Under that assumption, the remaining references can be safely marked as @Weak.
        // Using @Weak is necessary to avoid retain-cycles between BiEntry instances on iOS,
        // which would cause memory leaks when non-empty HashBiMap with cyclic BiEntry
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. src/runtime/mfinal.go

    	if gcphase != _GCoff {
    		// Currently we assume that the finalizer queue won't
    		// grow during marking so we don't have to rescan it
    		// during mark termination. If we ever need to lift
    		// this assumption, we can do it by adding the
    		// necessary barriers to queuefinalizer (which it may
    		// have automatically).
    		throw("queuefinalizer during GC")
    	}
    
    	lock(&finlock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

          case 1:
            if (isDurationBased(method)) {
              assertFalse(desc, isGuarded(method));
            } else {
              assertTrue(desc, isGuarded(method));
            }
            // we can't make an assumption about isTimed() because now we have single-parameter methods
            // that accept a java.time.Duration
            assertFalse(desc, isLongTimeUnitBased(method));
            break;
          case 2:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/unicode/utf8/utf8_test.go

    }
    
    // Check that a range loop, len([]rune(string)) optimization and
    // []rune conversions visit the same runes.
    // Not really a test of this package, but the assumption is used here and
    // it's good to verify.
    func TestRuntimeConversion(t *testing.T) {
    	for _, ts := range testStrings {
    		count := RuneCountInString(ts)
    		if n := runtimeRuneCount(ts); n != count {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.completed(2, { it.resultType == SKIPPED })
            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        def "executes a JUnit 4 test class with failed test assumption"() {
            when:
            process(ATestClassWithFailedTestAssumption)
    
            then:
            1 * processor.started({it.id == 1}, {it.parentId == null})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top