Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for valfunc (0.1 sec)

  1. pkg/volume/util/subpath/subpath_linux.go

    		// so it was replaced with filepath.Walk in a later patch, which can pass through error and handled by the callback WalkFunc.
    		// After go 1.16, WalkDir was introduced, it's more effective than Walk because the callback WalkDirFunc is called before
    		// reading a directory, making it save some time when a container's subPath contains lots of dirs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  2. tests/integration/security/jwt_test.go

    								headers.Authorization: "",
    								"X-Test-Payload":      payload3,
    								"X-Jwt-Iss":           "******@****.***",
    								"X-Jwt-Iat":           "1604008018",
    								"X-Jwt-Nested-Claim":  "valueC",
    							}))
    					},
    				},
    			}))
    
    			t.NewSubTest("authn-authz").Run(newTest("testdata/requestauthn/authn-authz.yaml.tmpl", []testCase{
    				{
    					name: "valid-token",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. src/net/http/clientserver_test.go

    		// Header() of those values later, after the response
    		// has been written (we wrote to w above).
    		w.Header().Set("Server-Trailer-A", "valuea")
    		w.Header().Set("Server-Trailer-C", "valuec") // skipping B
    		w.Header().Set("Server-Trailer-NotDeclared", "should be omitted")
    	}))
    
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	wantHeader := Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cgroup_manager_linux.go

    			continue
    		}
    		// Get a list of pids that are still charged to the pod's cgroup
    		pids, err = getCgroupProcs(dir)
    		if err != nil {
    			continue
    		}
    		pidsToKill.Insert(pids...)
    
    		// WalkFunc which is called for each file and directory in the pod cgroup dir
    		visitor := func(path string, info os.FileInfo, err error) error {
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg slices, func IsSortedFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) bool #60091
    pkg slices, func Max[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
    pkg slices, func MaxFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) int) $1 #60091
    pkg slices, func Min[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0) $1 #60091
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top