Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for unavoidable (0.22 sec)

  1. src/compress/flate/flate_test.go

    					// previous Read returned because the write buffer was full
    					// and it just so happened that the stream had no more data.
    					// This situation is rare, but unavoidable.
    					if r.(*decompressor).dict.availWrite() == windowSize {
    						earlyEOF = false
    					}
    
    					if n == 0 && earlyEOF {
    						t.Errorf("On size:%d flush:%v, Read() = (0, io.EOF), want (n, io.EOF)", sz, flush)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  2. src/runtime/preempt.go

    // and then both be suspended. This would also avoid the need for a
    // kernel context switch in the synchronous case because we could just
    // directly schedule the waiter. The context switch is unavoidable in
    // the signal case.
    //
    //go:systemstack
    func suspendG(gp *g) suspendGState {
    	if mp := getg().m; mp.curg != nil && readgstatus(mp.curg) == _Grunning {
    		// Since we're on the system stack of this M, the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. docs/bucket/replication/DESIGN.md

    delete marker replication, there is potential for duplicate delete markers to be created if both source and target concurrently set a Delete Marker or if one/both of the clusters went down at tandem before the replication event was synced.This is an unavoidable side-effect in active-active replication caused by allowing delete markers set on a object version with `REPLICA` status back to source.
    
    In the case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. src/go/build/deps_test.go

    	os
    	< golang.org/x/net/dns/dnsmessage,
    	  golang.org/x/net/lif,
    	  golang.org/x/net/route;
    
    	internal/bytealg, internal/itoa, math/bits, slices, strconv, unique
    	< net/netip;
    
    	# net is unavoidable when doing any networking,
    	# so large dependencies must be kept out.
    	# This is a long-looking list but most of these
    	# are small with few dependencies.
    	CGO,
    	golang.org/x/net/dns/dnsmessage,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. doc/godebug.md

    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    These kinds of changes are unavoidable and
    [permitted by the Go 1 compatibility rules](/doc/go1compat).
    Even so, Go provides a mechanism called GODEBUG to
    reduce the impact such changes have on Go developers
    using newer toolchains to compile old code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> k = objects.compound(objects.compound(numbers));
    
        // You can also arbitrarily assign a more restricted type - not an intended
        // feature, exactly, but unavoidable (I think) and harmless
        Ordering<Integer> l = objects.compound(numbers);
    
        // This correctly doesn't work:
        // Ordering<Object> m = numbers.compound(objects);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/testdata/describe/http_config.json

                          "timeout": "0s",
                          "retry_policy": {
                            "retry_on": "connect-failure,refused-stream,unavailable,cancelled,retriable-status-codes",
                            "num_retries": 2,
                            "retry_host_predicate": [
                              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform 'unavailable':
      - ${toolChain.instanceDisplayName}:
          - Don't know how to build for platform 'unavailable'.""")
    
            where:
            type                           | config
            "unavailable architecture"     | "architecture 'sparc'"
            "unavailable operating system" | "operatingSystem 'solaris'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/offline-mode.apt

      [[1]] This is obvious, but the network/internet is unavailable.
    
      [[2]] Localhost (127.0.0.1) may also be unavailable if the whole
            network stack is offline.
    
      [[3]] "Remote" repositories referenced using the file:// protocol may
            be available. However, if that file:// url references a
            file-share, as in the case of an NFS or SMB mount, that will
            be unavailable.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update.go

    	// * Expect manage loop will create new pods
    	// * Expect manage loop will handle failed pods
    	// * Deleted pods do not count as unavailable so that updates make progress when nodes are down
    	// Invariants:
    	// * The number of new pods that are unavailable must be less than maxUnavailable
    	// * A node with an available old pod is a candidate for deletion if it does not violate other invariants
    	//
    	if maxSurge == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top