Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 742 for recovered (0.15 sec)

  1. pilot/pkg/model/network_test.go

    		}
    		if !env.NetworkManager.IsMultiNetworkEnabled() {
    			t.Fatalf("multi network is not enabled")
    		}
    	})
    
    	workingDNSServer.setFailure(false)
    	t.Run("resolution recovered", func(t *testing.T) {
    		// addresses should be updated
    		retry.UntilOrFail(t, func() bool {
    			return !reflect.DeepEqual(env.NetworkManager.AllGateways(), gateways)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_volumes.go

    	podVolumes := kl.volumeManager.GetMountedVolumesForPod(
    		volumetypes.UniquePodName(podUID))
    	for outerVolumeSpecName, volume := range podVolumes {
    		// TODO: volume.Mounter could be nil if volume object is recovered
    		// from reconciler's sync state process. PR 33616 will fix this problem
    		// to create Mounter object when recovering volume state.
    		if volume.Mounter == nil {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

      /**
       * Returns true if there's more route plans to try.
       *
       * @param failedConnection an optional connection that was resulted in a failure. If the failure
       *     is recoverable, the connection's route may be recovered for the retry.
       */
      fun hasNext(failedConnection: RealConnection? = null): Boolean
    
      /**
       * Returns true if the host and port are unchanged from when this was created. This is used to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_signal_ios_arm64.c

    // Despite having a 'handle' mechanism like gdb, lldb will not allow a
    // SIGSEGV to pass to the running program. For Go, this means we cannot
    // generate a panic, which cannot be recovered, and so tests fail.
    //
    // We work around this by registering a thread-level mach exception handler
    // and intercepting EXC_BAD_ACCESS. The kernel offers thread handlers a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8.go

    	}
    }
    
    // Reseed reseeds the state with new random values.
    // After a call to Reseed, any previously returned random values
    // have been erased from the memory of the state and cannot be
    // recovered.
    func (s *State) Reseed() {
    	var seed [4]uint64
    	for i := range seed {
    		for {
    			x, ok := s.Next()
    			if ok {
    				seed[i] = x
    				break
    			}
    			s.Refill()
    		}
    	}
    	s.Init64(seed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

          }
        }
      }
    
      /**
       * Report and attempt to recover from a failure to communicate with a server. Returns true if
       * `e` is recoverable, or false if the failure is permanent. Requests with a body can only
       * be recovered if the body is buffered or if the failure occurred before the request has been
       * sent.
       */
      private fun recover(
        e: IOException,
        call: RealCall,
        userRequest: Request,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    	index int    // index of corresponding push or pop event
    }
    
    // TODO: Experiment with storing only the second word of event.node (unsafe.Pointer).
    // Type can be recovered from the sole bit in typ.
    
    // Preorder visits all the nodes of the files supplied to New in
    // depth-first order. It calls f(n) for each node n before it visits
    // n's children.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. docs/debugging/README.md

    mc: Encrypted file data successfully downloaded as inspect.ad2b43d8.enc
    mc: Decryption key: ad2b43d847fdb14e54c5836200177f7158b3f745433525f5d23c0e0208e50c9948540b54
    
    mc: The decryption key will ONLY be shown here. It cannot be recovered.
    mc: The encrypted file can safely be shared without the decryption key.
    mc: Even with the decryption key, data stored with encryption cannot be accessed.
    ```
    
    This file can be decrypted using the decryption tool below:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    				// Assuming they are not using deprecated/new fields, we can safely swap out the TypeUrl
    				// If we did not do this, merge.Merge below will panic (which is recovered), so even though this
    				// is not 100% reliable its better than doing nothing
    				if userFilter.GetTypedConfig().TypeUrl != filter.GetTypedConfig().TypeUrl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // The webhook cares about an operation if it matches _any_ Rule.
      // However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
      // from putting the cluster in a state which cannot be recovered from without completely
      // disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
      // on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top