Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 793 for myrole (0.16 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                                            if (subResult.isEmpty()) {
                                                final Role role = new Role();
                                                role.setName(name);
                                                insert(role);
                                            }
                                            final List<ModificationItem> modifyList = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    			sourceURL:    "http://mynode.com/any/path/",
    			transport:    testTransport,
    			output:       `<script src="http://google.com/kubernetes.js"/>`,
    			contentType:  "text/html",
    			forwardedURI: "/proxy/node/node1:10250/any/path/",
    		},
    		"abs but same host": {
    			input:        `<script src="http://mynode.com/kubernetes.js"/>`,
    			sourceURL:    "http://mynode.com/any/path/",
    			transport:    testTransport,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. src/runtime/lfstack_test.go

    	. "runtime"
    	"testing"
    	"unsafe"
    )
    
    type MyNode struct {
    	LFNode
    	data int
    }
    
    // allocMyNode allocates nodes that are stored in an lfstack
    // outside the Go heap.
    // We require lfstack objects to live outside the heap so that
    // checkptr passes on the unsafe shenanigans used.
    func allocMyNode(data int) *MyNode {
    	n := (*MyNode)(PersistentAlloc(unsafe.Sizeof(MyNode{})))
    	LFNodeValidate(&n.LFNode)
    	n.data = data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_path_params/test_tutorial004.py

    client = TestClient(app)
    
    
    def test_file_path():
        response = client.get("/files/home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
        assert response.json() == {"file_path": "home/johndoe/myfile.txt"}
    
    
    def test_root_file_path():
        response = client.get("/files//home/johndoe/myfile.txt")
        print(response.content)
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. test/fixedbugs/issue23814.go

    	// 5
    	_ = []rune(myString("白鵬翔")) // []rune{0x767d, 0x9d6c, 0x7fd4}
    	_ = []rune("")              // []rune{}
    
    	_ = runes("白鵬翔") // []rune{0x767d, 0x9d6c, 0x7fd4}
    
    	_ = []myRune("♫♬")          // []myRune{0x266b, 0x266c}
    	_ = []myRune(myString("🌐")) // []myRune{0x1f310}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 00:06:24 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/internal/pkgpattern/pat_test.go

    	not ./vendor/foo/vendor/bar
    
    	pattern mycode/vendor/...
    	match mycode/vendor mycode/vendor/foo mycode/vendor/foo/vendor
    	not mycode/vendor/foo/vendor/bar
    
    	pattern x/vendor/y
    	match x/vendor/y
    	not x/vendor
    
    	pattern x/vendor/y/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    	not x/vendor/y/vendor/z
    
    	pattern .../vendor/...
    	match x/vendor/y x/vendor/y/z x/vendor/y/vendor x/vendor/y/z/vendor
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. src/path/example_test.go

    		dir, file := path.Split(s)
    		fmt.Printf("path.Split(%q) = dir: %q, file: %q\n", s, dir, file)
    	}
    	split("static/myfile.css")
    	split("myfile.css")
    	split("")
    	// Output:
    	// path.Split("static/myfile.css") = dir: "static/", file: "myfile.css"
    	// path.Split("myfile.css") = dir: "", file: "myfile.css"
    	// path.Split("") = dir: "", file: ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

    cici37 <******@****.***> 1706047840 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-role-bindings.yaml

    Michael Taufen <******@****.***> 1591656093 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 11 19:01:47 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue23536.go

    // Test case where a slice of a user-defined byte type (not uint8 or byte) is
    // converted to a string.  Same for slice of runes.
    
    package main
    
    type MyByte byte
    
    type MyRune rune
    
    func main() {
    	var y []MyByte
    	_ = string(y)
    
    	var z []MyRune
    	_ = string(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 18:40:16 UTC 2022
    - 428 bytes
    - Viewed (0)
Back to top