Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for userTime (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	WorkingSetPrivateSize        int64
    	HardFaultCount               uint32
    	NumberOfThreadsHighWatermark uint32
    	CycleTime                    uint64
    	CreateTime                   int64
    	UserTime                     int64
    	KernelTime                   int64
    	ImageName                    NTUnicodeString
    	BasePriority                 int32
    	UniqueProcessID              uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Filetime, kernelTime *Filetime, userTime *Filetime) (err error) {
    	r1, _, e1 := syscall.Syscall6(procGetProcessTimes.Addr(), 5, uintptr(handle), uintptr(unsafe.Pointer(creationTime)), uintptr(unsafe.Pointer(exitTime)), uintptr(unsafe.Pointer(kernelTime)), uintptr(unsafe.Pointer(userTime)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    					},
    					ClaimMappings: apiserver.ClaimMappings{
    						Username: apiserver.PrefixedClaimOrExpression{
    							Claim:  "username",
    							Prefix: pointer.String("system:"),
    						},
    					},
    					UserValidationRules: []apiserver.UserValidationRule{
    						{
    							Expression: "!user.username.startsWith('system:')",
    							Message:    "username cannot used reserved system: prefix",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
     *         .transform((closer, result) -> result.get("userName"), directExecutor())
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * credentials with this file or pipe. This can be used to retrieve the
     * username for example:
     * <tt>
     * String username = f.getPrincipal().getName();
     * </tt>
     * The <tt>Principal</tt> object returned will never be <tt>null</tt>
     * however the username can be <tt>null</tt> indication anonymous
     * credentials were used (e.g. some IPC$ services).
     */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: User Agent */
        public static final String LABELS_USER_AGENT = "{labels.userAgent}";
    
        /** The key of the message: Username */
        public static final String LABELS_USERNAME = "{labels.username}";
    
        /** The key of the message: Value */
        public static final String LABELS_VALUE = "{labels.value}";
    
        /** The key of the message: Version No. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "csr2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: certificates.CertificateSigningRequestSpec{
    					Username: "CSR Requestor",
    				},
    				Status: certificates.CertificateSigningRequestStatus{
    					Conditions: []certificates.CertificateSigningRequestCondition{
    						{
    							Type: certificates.CertificateApproved,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_APP_DOUBLE_SUBMIT_REQUEST = "{errors.app.double.submit.request}";
    
        /** The key of the message: Username or Password is not correct. */
        public static final String ERRORS_login_error = "{errors.login_error}";
    
        /** The key of the message: Failed to process SSO login. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    		}
    		gotuser, gotpass, ok := r2.BasicAuth()
    		if !ok || gotuser != username || gotpass != password {
    			t.Errorf("req.BasicAuth() = %q, %q, %v; want %q, %q, true", gotuser, gotpass, ok, username, password)
    		}
    	}))
    	u, err := url.Parse(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	u.User = url.UserPassword(username, password)
    	t.Setenv("HTTP_PROXY", u.String())
    	cst.tr.Proxy = ProxyURL(u)
    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