Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 145 for isActive (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    const SizeofUvmexp = 0x158
    
    type Uvmexp struct {
    	Pagesize           int32
    	Pagemask           int32
    	Pageshift          int32
    	Npages             int32
    	Free               int32
    	Active             int32
    	Inactive           int32
    	Paging             int32
    	Wired              int32
    	Zeropages          int32
    	Reserve_pagedaemon int32
    	Reserve_kernel     int32
    	Unused01           int32
    	Vnodepages         int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        )
        response = client.get(
            "/users/me", headers={"Authorization": f"Bearer {access_token}"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Inactive user"}
    
    
    @needs_py39
    def test_read_items(client: TestClient):
        access_token = get_access_token(scope="me items", client=client)
        response = client.get(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    	Pagesize           int64
    	Pagemask           int64
    	Pageshift          int64
    	Npages             int64
    	Free               int64
    	Active             int64
    	Inactive           int64
    	Paging             int64
    	Wired              int64
    	Zeropages          int64
    	Reserve_pagedaemon int64
    	Reserve_kernel     int64
    	Freemin            int64
    	Freetarg           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    	Pagesize           int64
    	Pagemask           int64
    	Pageshift          int64
    	Npages             int64
    	Free               int64
    	Active             int64
    	Inactive           int64
    	Paging             int64
    	Wired              int64
    	Zeropages          int64
    	Reserve_pagedaemon int64
    	Reserve_kernel     int64
    	Freemin            int64
    	Freetarg           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go

    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    	Pagesize           int64
    	Pagemask           int64
    	Pageshift          int64
    	Npages             int64
    	Free               int64
    	Active             int64
    	Inactive           int64
    	Paging             int64
    	Wired              int64
    	Zeropages          int64
    	Reserve_pagedaemon int64
    	Reserve_kernel     int64
    	Freemin            int64
    	Freetarg           int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    		"If enabled, Istio will create clusters only when there are requests. This will save memory and CPU cycles"+
    			" in cases where there are lots of inactive clusters and > 1 worker thread").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/security/simple-oauth2.md

    ```
    
    ### 🔕 👩‍💻
    
    🔜 🔄 ⏮️ 🔕 👩‍💻, 🔓 ⏮️:
    
    👩‍💻: `alice`
    
    🔐: `secret2`
    
    & 🔄 ⚙️ 🛠️ `GET` ⏮️ ➡ `/users/me`.
    
    👆 🔜 🤚 "🔕 👩‍💻" ❌, 💖:
    
    ```JSON
    {
      "detail": "Inactive user"
    }
    ```
    
    ## 🌃
    
    👆 🔜 ✔️ 🧰 🛠️ 🏁 💂‍♂ ⚙️ ⚓️ 🔛 `username` & `password` 👆 🛠️.
    
    ⚙️ 👫 🧰, 👆 💪 ⚒ 💂‍♂ ⚙️ 🔗 ⏮️ 🙆 💽 & ⏮️ 🙆 👩‍💻 ⚖️ 💽 🏷.
    
    🕴 ℹ ❌ 👈 ⚫️ 🚫 🤙 "🔐".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top