Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,912 for miny (0.06 sec)

  1. docs/en/docs/tutorial/security/oauth2-jwt.md

    So, the thief won't be able to try to use that password in another system (as many users use the same password everywhere, this would be dangerous).
    
    ## Install `passlib`
    
    PassLib is a great Python package to handle password hashes.
    
    It supports many secure hashing algorithms and utilities to work with them.
    
    The recommended algorithm is "Bcrypt".
    
    So, install PassLib with Bcrypt:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    * There can be **multiple processes** of the **same program** running at the same time.
    
    If you check out the "task manager" or "system monitor" (or similar tools) in your operating system, you will be able to see many of those processes running.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. releasenotes/notes/min-k8-ver-for-1.8.yaml

    Shamsher Ansari <******@****.***> 1605212884 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 12 20:28:04 UTC 2020
    - 160 bytes
    - Viewed (0)
  4. utils/tests/models.go

    import (
    	"database/sql"
    	"time"
    
    	"gorm.io/gorm"
    )
    
    // User has one `Account` (has one), many `Pets` (has many) and `Toys` (has many - polymorphic)
    // He works in a Company (belongs to), he has a Manager (belongs to - single-table), and also managed a Team (has many - single-table)
    // He speaks many languages (many to many) and has many friends (many to many - single-table)
    // His pet also has one Toy (has one - polymorphic)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. releasenotes/notes/min-k8-ver-for-1.9.yaml

    Shamsher Ansari <******@****.***> 1611332258 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 16:17:38 UTC 2021
    - 160 bytes
    - Viewed (0)
  6. test/fixedbugs/issue4215.go

    	}
    	return new(S), 12.34, 1 + 0i, 'r', true // ERROR "too many return values\n\thave \(\*S, number, number, number, bool\)\n\twant \(S, T, U\)|too many arguments to return"
    }
    
    func foo6() (T, string) {
    	return "T", true, true // ERROR "too many return values\n\thave \(string, bool, bool\)\n\twant \(T, string\)|too many arguments to return"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 18 21:43:02 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15055.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	type name string
    	_ = []byte("abc", "def", 12)    // ERROR "too many arguments (to conversion to \[\]byte: \(\[\]byte\)\(.abc., .def., 12\))?"
    	_ = string("a", "b", nil)       // ERROR "too many arguments (to conversion to string: string\(.a., .b., nil\))?"
    	_ = []byte()                    // ERROR "missing argument (to conversion to \[\]byte: \(\[\]byte\)\(\))?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 18:13:59 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue23732.go

    		1,
    		2,
    		3,
    	} // GC_ERROR "too few values in"
    
    	_ = Foo{
    		1,
    		2,
    		3,
    		Bar{"A", "B"}, // ERROR "too many values in|too many expressions"
    	}
    
    	_ = Foo{ // GCCGO_ERROR "too few expressions"
    		1,
    		2,
    		Bar{"A", "B"}, // ERROR "too many values in|too many expressions"
    	} // GC_ERROR "too few values in"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 749 bytes
    - Viewed (0)
  9. test/fixedbugs/issue19012.go

    func f(x int, y uint) {
    	if true {
    		return "a" > 10 // ERROR "^too many arguments to return$|return with value in function with no return|no result values expected|mismatched types"
    	}
    	return "gopher" == true, 10 // ERROR "^too many arguments to return$|return with value in function with no return|no result values expected|mismatched types"
    }
    
    func main() {
    	f(2, 3 < "x", 10) // ERROR "too many arguments|invalid operation|incompatible type"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 22:22:08 UTC 2023
    - 872 bytes
    - Viewed (0)
  10. test/typecheck.go

    // die after running into an undefined
    // type in the argument list for a
    // function.
    // Does not compile.
    
    package main
    
    func mine(int b) int { // ERROR "undefined.*b"
    	return b + 2 // ERROR "undefined.*b"
    }
    
    func main() {
    	mine()     // ERROR "not enough arguments"
    	c = mine() // ERROR "undefined.*c|not enough arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 543 bytes
    - Viewed (0)
Back to top