Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 335 for relu (0.04 sec)

  1. pkg/util/filesystem/util_windows.go

    	}
    
    	klog.V(6).InfoS("Function IsUnixDomainSocket starts", "filePath", filePath)
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584 we cannot rely
    	// on the Unix Domain socket working on the very first try, hence the potential need to
    	// dial multiple times
    	var lastSocketErr error
    	err := wait.PollImmediate(socketDialRetryPeriod, socketDialTimeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. 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
    // guarantee that kubelet can handle missing container events, it is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/EvictingQueue.java

         * their users.
         *
         * However, the checker *we* use has this special knowledge about `Collection.toArray()` anyway,
         * so in our implementation code, we can rely on that. That's why the expression below
         * type-checks.
         */
        return super.toArray();
      }
    
      private static final long serialVersionUID = 0L;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    // limitations under the License.
    
    [[dependency_management_in_gradle]]
    = Dependency Management
    
    Software projects rarely work in isolation.
    Projects often rely on reusable functionality from libraries.
    Some projects organize unrelated functionality into separate parts of a modular system.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/math/rand/v2/example_test.go

    // the output of the random number generator when given a fixed seed.
    
    func Example() {
    	answers := []string{
    		"It is certain",
    		"It is decidedly so",
    		"Without a doubt",
    		"Yes definitely",
    		"You may rely on it",
    		"As I see it yes",
    		"Most likely",
    		"Outlook good",
    		"Yes",
    		"Signs point to yes",
    		"Reply hazy try again",
    		"Ask again later",
    		"Better not tell you now",
    		"Cannot predict now",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		osSupportsAVX = isSet(1, eax) && isSet(2, eax)
    
    		if runtime.GOOS == "darwin" {
    			// Darwin doesn't save/restore AVX-512 mask registers correctly across signal handlers.
    			// Since users can't rely on mask register contents, let's not advertise AVX-512 support.
    			// See issue 49233.
    			osSupportsAVX512 = false
    		} else {
    			// Check if OPMASK and ZMM registers have OS support.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. cni/pkg/repair/netns.go

    // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where
    // it might be.
    //
    // Instead, we rely directly on the procfs.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/ready/probe.go

    	// does not use both of them, it is safe to cache this value. Since the
    	// actual readiness probe goes via Envoy, it ensures that Envoy is actively
    	// serving traffic and we can rely on that.
    	if p.atleastOnceReady {
    		return nil
    	}
    
    	err := checkEnvoyStats(p.LocalHostAddr, p.AdminPort)
    	if err == nil {
    		metrics.RecordStartupTime()
    		p.atleastOnceReady = true
    	}
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/node_ipam_controller.go

    	allocatorType ipam.CIDRAllocatorType) (*Controller, error) {
    
    	if kubeClient == nil {
    		return nil, fmt.Errorf("kubeClient is nil when starting Controller")
    	}
    
    	// Cloud CIDR allocator does not rely on clusterCIDR or nodeCIDRMaskSize for allocation.
    	if allocatorType != ipam.CloudAllocatorType {
    		if len(clusterCIDRs) == 0 {
    			return nil, fmt.Errorf("Controller: Must specify --cluster-cidr if --allocate-node-cidrs is set")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    					return fmt.Errorf("failed to restart echo instance: %v", err)
    				}
    			}
    			attempts++
    			for _, w := range i.WorkloadsOrFail(t) {
    				w := w
    				for k, v := range values {
    					// can we rely on printenv being in the container once distroless is default?
    					out, _, err := i.Config().Cluster.PodExec(w.PodName(), i.Config().Namespace.Name(),
    						"istio-proxy", fmt.Sprintf("printenv %s", k))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top