Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,113 for Forever (0.29 sec)

  1. src/go/constant/value.go

    				// Otherwise, lit might contain a value with a large negative exponent,
    				// such as -6e-1886451601. As a float, that will underflow to 0,
    				// but it'll take forever to parse as a Rat.
    				lit = "0"
    			}
    			if r, ok := newRat().SetString(lit); ok {
    				return ratVal{r}
    			}
    		}
    		// otherwise use floats
    		return makeFloat(f)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
      #     ${KUBECTL} --namespace=kube-system delete service kube-dns
      # And this one hang forever:
      #     ${KUBECTL} --namespace=kube-system delete rc kube-dns-v10
      # fi
    
      # Check if the API server is still running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	syncTicker := time.NewTicker(syncPeriod).C
    
    	// syncPod and syncBatch share the same go routine to avoid sync races.
    	go wait.Forever(func() {
    		for {
    			select {
    			case <-m.podStatusChannel:
    				klog.V(4).InfoS("Syncing updated statuses")
    				m.syncBatch(false)
    			case <-syncTicker:
    				klog.V(4).InfoS("Syncing all statuses")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                //
                // Our settings.xml source is historically how we have configured Maven from the CLI so we are going to
                // have to honour its existence forever. So let's run it.
                //
                configurationProcessors.get(SettingsXmlConfigurationProcessor.HINT).process(cliRequest);
            } else if (userSuppliedConfigurationProcessorCount == 1) {
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. pkg/controller/controller_utils.go

    	// before a dormant controller waiting for those packets is woken up anyway. It is
    	// specifically targeted at the case where some problem prevents an update
    	// of expectations, without it the controller could stay asleep forever. This should
    	// be set based on the expected latency of watch events.
    	//
    	// Currently a controller can service (create *and* observe the watch events for said
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    		// should've hung up on us.
    		//
    		// Also, if we retried now, we could loop forever
    		// creating new connections and retrying if the server
    		// is just hanging up on us because it doesn't like
    		// our request (as opposed to sending an error).
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. helm-releases/minio-2.0.1.tgz

    persistence.enabled=false minio/minio ``` > *"An emptyDir volume is first created when a Pod is assigned to a Node, and exists as long as that Pod is running on that node. When a Pod is removed from a node for any reason, the data in the emptyDir is deleted forever."* Existing PersistentVolumeClai ---------- If a Persistent Volume Claim already exists, specify it during installation. 1. Create the PersistentVolume 2. Create the PersistentVolumeClai 3. Install the chart ```bash helm install --set persistence...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  8. src/runtime/panic.go

    			didothers = true
    			tracebackothers(gp)
    		}
    	}
    	unlock(&paniclk)
    
    	if panicking.Add(-1) != 0 {
    		// Some other m is panicking too.
    		// Let it print what it needs to print.
    		// Wait forever without chewing up cpu.
    		// It will exit when it's done.
    		lock(&deadlock)
    		lock(&deadlock)
    	}
    
    	printDebugLog()
    
    	return docrash
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	}
    
    	return c.closeNotify()
    }
    
    func (c *Conn) closeNotify() error {
    	c.out.Lock()
    	defer c.out.Unlock()
    
    	if !c.closeNotifySent {
    		// Set a Write Deadline to prevent possibly blocking forever.
    		c.SetWriteDeadline(time.Now().Add(time.Second * 5))
    		c.closeNotifyErr = c.sendAlertLocked(alertCloseNotify)
    		c.closeNotifySent = true
    		// Any subsequent writes will fail.
    		c.SetWriteDeadline(time.Now())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
    Moreover, the inner slices must be initialized individually.
    </p>
    
    <h3 id="Struct_types">Struct types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top