Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 341 for vsrb (0.07 sec)

  1. src/fmt/errors.go

    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/fmt/doc.go

    If an invalid argument is given for a verb, such as providing
    a string to %d, the generated string will contain a
    description of the problem, as in these examples:
    
    	Wrong type or unknown verb: %!verb(type=value)
    		Printf("%d", "hi"):        %!d(string=hi)
    	Too many arguments: %!(EXTRA type=value)
    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    		}
    		if !apiRequestInfo.IsResourceRequest {
    			t.Errorf("Expected resource request")
    		}
    		if successCase.expectedVerb != apiRequestInfo.Verb {
    			t.Errorf("Unexpected verb for url: %s, expected: %s, actual: %s", successCase.url, successCase.expectedVerb, apiRequestInfo.Verb)
    		}
    		if successCase.expectedAPIVersion != apiRequestInfo.APIVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            "a/b"        | "a/b".length() | "c"       | true
            "a/b"        | "a/".length()  | "b"       | true
            "b"          | 0              | "b/c/d"   | true
            verb = result ? "is" : "is not"
        }
    
        def "'#relativePath / #offset' #verb '#prefix' as a prefix"() {
            expect:
            VfsRelativePath.of(relativePath, offset).hasPrefix(prefix, CASE_SENSITIVE) == result
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/a.out.go

    	REG_VS62
    	REG_VS63
    
    	REG_CR0
    	REG_CR1
    	REG_CR2
    	REG_CR3
    	REG_CR4
    	REG_CR5
    	REG_CR6
    	REG_CR7
    
    	// MMA accumulator registers, these shadow VSR 0-31
    	// e.g MMAx shadows VSRx*4-VSRx*4+3 or
    	//     MMA0 shadows VSR0-VSR3
    	REG_A0
    	REG_A1
    	REG_A2
    	REG_A3
    	REG_A4
    	REG_A5
    	REG_A6
    	REG_A7
    
    	REG_MSR
    	REG_FPSCR
    	REG_CR
    
    	REG_SPECIAL = REG_CR0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/registry/authorization/util/helpers.go

    func ResourceAttributesFrom(user user.Info, in authorizationapi.ResourceAttributes) authorizer.AttributesRecord {
    	return authorizer.AttributesRecord{
    		User:            user,
    		Verb:            in.Verb,
    		Namespace:       in.Namespace,
    		APIGroup:        in.Group,
    		APIVersion:      matchAllVersionIfEmpty(in.Version),
    		Resource:        in.Resource,
    		Subresource:     in.Subresource,
    		Name:            in.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. build/pause/CHANGELOG.md

    # 3.1
    
    * The pause container gains a signal handler to clean up orphaned zombie processes. ([#36853](https://prs.k8s.io/36853), [@verb](https://github.com/verb))
    * `pause -v` will return build information for the pause binary. ([#56762](https://prs.k8s.io/56762), [@verb](https://github.com/verb))
    
    # 3.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller_test.go

    		t.Fatalf("Expected at least %d actions, got %d \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 14 23:31:58 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    	if len(actions) != len(expected) {
    		t.Fatalf("Expected at least %d actions, got %d", len(expected), len(actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    		if action.GetResource().Resource != resource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/rest/log.go

    	// Given that underlying store is shared with REST,
    	// we don't destroy it here explicitly.
    }
    
    // ProducesMIMETypes returns a list of the MIME types the specified HTTP verb (GET, POST, DELETE,
    // PATCH) can respond with.
    func (r *LogREST) ProducesMIMETypes(verb string) []string {
    	// Since the default list does not include "plain/text", we need to
    	// explicitly override ProducesMIMETypes, so that it gets added to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top