Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for controllee (0.23 sec)

  1. pkg/kubelet/kubelet.go

    	// (in pod manager), and requested (by invoking UpdatePod) but not start for an arbitrarily
    	// long interval because a prior pod is still terminating.
    	//
    	// As an event-driven (by UpdatePod) controller, the podWorkers must periodically be resynced
    	// by the kubelet invoking SyncKnownPods with the desired state (admitted pods in podManager).
    	// Since the podManager may be unaware of some running pods due to force deletion, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	EM_C166          Machine = 116 /* Infineon C16x/XC16x processor */
    	EM_M16C          Machine = 117 /* Renesas M16C series microprocessors */
    	EM_DSPIC30F      Machine = 118 /* Microchip Technology dsPIC30F Digital Signal Controller */
    	EM_CE            Machine = 119 /* Freescale Communication Engine RISC core */
    	EM_M32C          Machine = 120 /* Renesas M32C series microprocessors */
    	EM_TSK3000       Machine = 131 /* Altium TSK3000 core */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    // [Tx.Rollback] is called on the transaction, that transaction's
    // connection is returned to [DB]'s idle connection pool. The pool size
    // can be controlled with [DB.SetMaxIdleConns].
    type DB struct {
    	// Total time waited for new connections.
    	waitDuration atomic.Int64
    
    	connector driver.Connector
    	// numClosed is an atomic counter which represents a total number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        # Delete routes.
        local -a routes
        # Clean up all routes w/ names like "<cluster-name>-<node-GUID>"
        # e.g. "kubernetes-12345678-90ab-cdef-1234-567890abcdef". The name is
        # determined by the node controller on the master.
        # Note that this is currently a noop, as synchronously deleting the node MIG
        # first allows the master to cleanup routes itself.
        local TRUNCATED_PREFIX="${INSTANCE_PREFIX:0:26}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    </p>
    
    <h3 id="For_statements">For statements</h3>
    
    <p>
    A "for" statement specifies repeated execution of a block. There are three forms:
    The iteration may be controlled by a single condition, a "for" clause, or a "range" clause.
    </p>
    
    <pre class="ebnf">
    ForStmt = "for" [ Condition | ForClause | RangeClause ] Block .
    Condition = Expression .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    		copied.OwnerReferences = append(copied.OwnerReferences, metav1.OwnerReference{
    			APIVersion: v1.SchemeGroupVersion.String(),
    			Kind:       "Node",
    			Name:       nodeName,
    			UID:        nodeUID,
    			Controller: &isTrue,
    		})
    		return copied
    	}
    
    	tests := []struct {
    		name                    string
    		pods                    []*v1.Pod
    		runtimePods             []*containertest.FakePod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // containing the module's go.mod file.
    //
    // The go directive specifies the version of Go the file was written at. It
    // is possible there may be future changes in the semantics of workspaces
    // that could be controlled by this version, but for now the version
    // specified has no effect.
    //
    // The replace directive has the same syntax as the replace directive in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	{req: "https://secure.tld/", env: "http.proxy.tld", httpsenv: "https://secure.proxy.tld", want: "https://secure.proxy.tld"},
    
    	// Issue 16405: don't use HTTP_PROXY in a CGI environment,
    	// where HTTP_PROXY can be attacker-controlled.
    	{env: "http://10.1.2.3:8080", reqmeth: "POST",
    		want:    "<nil>",
    		wanterr: errors.New("refusing to use HTTP_PROXY value in CGI environment; see golang.org/s/cgihttpproxy")},
    
    	{want: "<nil>"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top