Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for complain (0.33 sec)

  1. src/encoding/json/scanner.go

    // stateEndTop is the state after finishing the top-level value,
    // such as after reading `{}` or `[1,2,3]`.
    // Only space characters should be seen now.
    func stateEndTop(s *scanner, c byte) int {
    	if !isSpace(c) {
    		// Complain about non-space byte on next call.
    		s.error(c, "after top-level value")
    	}
    	return scanEnd
    }
    
    // stateInString is the state after reading `"`.
    func stateInString(s *scanner, c byte) int {
    	if c == '"' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

             it != test_case_infos_.end(); ++it) {
          if ((*it)->GetTestCaseName() == test_case_name) {
            if ((*it)->GetTestCaseTypeId() != GetTypeId<TestCase>()) {
              // Complain about incorrect usage of Google Test facilities
              // and terminate the program since we cannot guaranty correct
              // test case setup and tear-down in this case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server_test.go

    				// Golang doesn't have first class support for h2c, so we provide some workarounds
    				// See https://www.mailgun.com/blog/http-2-cleartext-h2c-client-example-go/
    				// So http2.Transport doesn't complain the URL scheme isn't 'https'
    				AllowHTTP: true,
    				// Pretend we are dialing a TLS endpoint. (Note, we ignore the passed tls.Config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/encoding/gob/debug.go

    		return
    	}
    	m, e := io.ReadFull(p.r, b)
    	if m > 0 {
    		p.data = append(p.data, b[:m]...)
    	}
    	n += m
    	if e == io.ErrUnexpectedEOF {
    		// That means m > 0 but we reached EOF. If we got data
    		// we won't complain about not being able to peek enough.
    		if n > 0 {
    			e = nil
    		} else {
    			e = io.EOF
    		}
    	}
    	return n, e
    }
    
    type debugger struct {
    	mutex          sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    		ret = &spec.Schema{
    			SchemaProps: spec.SchemaProps{Type: []string{"object"}},
    		}
    		// no, we cannot add more properties here, not even TypeMeta/ObjectMeta because kubectl will complain about
    		// unknown fields for anything else.
    	} else {
    		if opts.V2 {
    			schema = openapiv2.ToStructuralOpenAPIV2(schema)
    		}
    
    		ret = schema.ToKubeOpenAPI()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/link.go

    	// almost meaningless. So we insist that when all is said and done,
    	// if the domain is followed by anything, that thing must be a slash,
    	// even though GitHub is not that picky.
    	// People might complain about www.example.com:1234 not working,
    	// but if you want to get fancy with that kind of thing, just write http:// in front.
    	if textstart == start && i > domEnd && s[domEnd] != '/' {
    		i = domEnd
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	// TODO(gri): store struct scope in AST
    	return &ast.StructType{pos, &ast.FieldList{lbrace, list, rbrace}, false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/print/print.go

    }
    
    type errorTest4 int
    
    func (errorTest4) Error() int { // Different return type.
    	return 3
    }
    
    type errorTest5 int
    
    func (errorTest5) error() { // niladic; don't complain if no args (was bug)
    }
    
    // This function never executes, but it serves as a simple test for the program.
    // Test with make test.
    func PrintfTests() {
    	var b bool
    	var i int
    	var r rune
    	var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  9. src/net/smtp/smtp_test.go

    	}
    	if err := c.Verify("******@****.***"); err != nil {
    		t.Fatalf("Second VRFY: expected verification, got %s", err)
    	}
    
    	// fake TLS so authentication won't complain
    	c.tls = true
    	c.serverName = "smtp.google.com"
    	if err := c.Auth(PlainAuth("", "user", "pass", "smtp.google.com")); err != nil {
    		t.Fatalf("AUTH failed: %s", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stmt.go

    			}
    			assert(obj.typ == nil)
    
    			// initialize lhs iteration variable, if any
    			typ := rhs[i]
    			if typ == nil {
    				obj.typ = Typ[Invalid]
    				obj.used = true // don't complain about unused variable
    				continue
    			}
    
    			if rangeOverInt {
    				assert(i == 0) // at most one iteration variable (rhs[1] == nil for rangeOverInt)
    				check.initVar(obj, &x, "range clause")
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top