Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 74 for valfunc (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// TTLFunc returns the TTL (time to live) that objects should be persisted
    	// with. The existing parameter is the current TTL or the default for this
    	// operation. The update parameter indicates whether this is an operation
    	// against an existing object.
    	//
    	// Objects that are persisted with a TTL are evicted once the TTL expires.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            // Act
            cli.cli(request);
            cli.properties(request);
    
            // Assert
            assertThat(request.getUserProperties().getProperty("valFound"), is("sbari"));
            assertThat(request.getUserProperties().getProperty("valNotFound"), is("s${foz}i"));
            assertThat(request.getUserProperties().getProperty("valRootDirectory"), is("myRootDirectory/.mvn/foo"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    }
    
    //go:nosplit
    func nilfunc() {
    	*(*uint8)(nil) = 0
    }
    
    // adjust Gobuf as if it executed a call to fn
    // and then stopped before the first instruction in fn.
    func gostartcallfn(gobuf *gobuf, fv *funcval) {
    	var fn unsafe.Pointer
    	if fv != nil {
    		fn = unsafe.Pointer(fv.fn)
    	} else {
    		fn = unsafe.Pointer(abi.FuncPCABIInternal(nilfunc))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tests/integration/pilot/common/routing.go

    		config:           configAll,
    		templateVars: func(src echo.Callers, dest echo.Instances) map[string]any {
    			return map[string]any{
    				"Headers":           []configData{{"X-Jwt-Nested-Key", "exact", "valueC"}},
    				"SystemNamespace":   t.Istio.Settings().SystemNamespace,
    				"GatewayIstioLabel": t.Istio.Settings().IngressGatewayIstioLabel,
    			}
    		},
    		opts: echo.CallOptions{
    			Count: 1,
    			Port: echo.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/test/test.go

    finds any problems, go test reports those and does not run the test
    binary. Only a high-confidence subset of the default go vet checks are
    used. That subset is: atomic, bool, buildtags, directive, errorsas,
    ifaceassert, nilfunc, printf, and stringintconv. You can see
    the documentation for these and other vet tests via "go doc cmd/vet".
    To disable the running of go vet, use the -vet=off flag. To run all
    checks, use the -vet=all flag.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top