Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 517 for inactive (0.12 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	"path/filepath"
    	"strings"
    	"time"
    
    	"golang.org/x/telemetry/internal/config"
    	"golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // reports generates reports from inactive count files
    func (u *uploader) reports(todo *work) ([]string, error) {
    	if mode, _ := u.dir.Mode(); mode == "off" {
    		return nil, nil // no reports
    	}
    	thisInstant := u.startTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    			return errors.Wrap(err, "error printing files on dryrun")
    		}
    		return nil
    	}
    
    	// Try to start the kubelet service in case it's inactive
    	fmt.Println("[kubelet-start] Starting the kubelet")
    	kubeletphase.TryStartKubelet()
    
    	// Now the kubelet will perform the TLS Bootstrap, transforming /etc/kubernetes/bootstrap-kubelet.conf to /etc/kubernetes/kubelet.conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    <br>
    <table>
      <tr>
        <th>Start location</th>
    	<th>Count</th>
    	<th>Total execution time</th>
      </tr>
    {{range $}}
      <tr>
        <td><code><a href="/goroutine?name={{.Name}}">{{or .Name "(Inactive, no stack trace sampled)"}}</a></code></td>
    	<td>{{.N}}</td>
    	<td>{{.ExecTime}}</td>
      </tr>
    {{end}}
    </table>
    </body>
    </html>
    `))
    
    // GoroutineHandler creates a handler that serves information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/security/simple-oauth2.md

    }
    ```
    
    ### 未激活用户
    
    测试未激活用户,输入以下信息,进行身份验证:
    
    用户名:`alice`
    
    密码:`secret2`
    
    然后,执行 `/users/me` 路径的 `GET` 操作。
    
    显示下列**未激活用户**错误信息:
    
    ```JSON
    {
      "detail": "Inactive user"
    }
    ```
    
    ## 小结
    
    使用本章的工具实现基于 `username` 和 `password` 的完整 API 安全系统。
    
    这些工具让安全系统兼容任何数据库、用户及数据模型。
    
    唯一欠缺的是,它仍然不是真的**安全**。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    each node contains
    
     - type of delimiter [ ![ _ *
     - number of delimiters
     - active or not
     - potential opener, potential closer, or obth
    
    when a ] is hit, call look for link or image
    when end is hit, call process emphasis
    
    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. src/internal/trace/testtrace/validation.go

    				} else {
    					e.Errorf("stopping proc %d not bound to any active context", id)
    				}
    			}
    		}
    	case trace.EventRangeBegin, trace.EventRangeActive, trace.EventRangeEnd:
    		// Validate ranges.
    		r := ev.Range()
    		switch ev.Kind() {
    		case trace.EventRangeBegin:
    			if v.hasRange(r.Scope, r.Name) {
    				e.Errorf("already active range %q on %v begun again", r.Name, r.Scope)
    			}
    			v.addRange(r.Scope, r.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    			id:         sandbox.Id,
    			createTime: time.Unix(0, sandbox.CreatedAt),
    		}
    
    		// Set ready sandboxes and sandboxes that still have containers to be active.
    		if sandbox.State == runtimeapi.PodSandboxState_SANDBOX_READY || sandboxIDs.Has(sandbox.Id) {
    			sandboxInfo.active = true
    		}
    
    		sandboxesByPod[podUID] = append(sandboxesByPod[podUID], sandboxInfo)
    	}
    
    	for podUID, sandboxes := range sandboxesByPod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/memory_manager.go

    	m.Lock()
    	defer m.Unlock()
    
    	// Get the list of admitted and active pods.
    	activeAndAdmittedPods := m.activePods()
    	if m.pendingAdmissionPod != nil {
    		activeAndAdmittedPods = append(activeAndAdmittedPods, m.pendingAdmissionPod)
    	}
    
    	// Build a list of (podUID, containerName) pairs for all containers in all active Pods.
    	activeContainers := make(map[string]map[string]struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
Back to top