Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,177 for Missing (0.16 sec)

  1. tests/test_tutorial/test_dependencies/test_tutorial012_an.py

            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["header", "x-token"],
                        "msg": "Field required",
                        "input": None,
                    },
                    {
                        "type": "missing",
                        "loc": ["header", "x-key"],
                        "msg": "Field required",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            SimpleProblemCollector result = validate("missing-artifactId-pom.xml");
    
            assertViolations(result, 0, 1, 0);
    
            assertEquals("'artifactId' is missing.", result.getErrors().get(0));
        }
    
        @Test
        void testMissingGroupId() throws Exception {
            SimpleProblemCollector result = validate("missing-groupId-pom.xml");
    
            assertViolations(result, 0, 1, 0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue43190.go

    // The errors below are produced by the parser, but we check
    // them here for consistency with the types2 tests.
    
    package p
    
    import ; // ERROR "missing import path"
    import "" // ERROR "invalid import path (empty string)"
    import
    var /* ERROR "missing import path" */ _ int
    import .; // ERROR "missing import path"
    import 'x' // ERROR "import path must be a string"
    var _ int
    import /* ERROR "imports must appear before other declarations" */ _ "math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  4. test/fixedbugs/issue15055.go

    	_ = []byte()                    // ERROR "missing argument (to conversion to \[\]byte: \(\[\]byte\)\(\))?"
    	_ = string()                    // ERROR "missing argument (to conversion to string: string\(\))?"
    	_ = *int()                      // ERROR "missing argument (to conversion to int: int\(\))?"
    	_ = (*int)()                    // ERROR "missing argument (to conversion to \*int: \(\*int\)\(\))?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 05 18:13:59 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_body_multiple_params/test_tutorial003.py

                        "type": "value_error.missing",
                    },
                    {
                        "loc": ["body", "user"],
                        "msg": "field required",
                        "type": "value_error.missing",
                    },
                    {
                        "loc": ["body", "importance"],
                        "msg": "field required",
                        "type": "value_error.missing",
                    },
                ]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/os/user/lookup_stubs.go

    	if u.Uid != "" && u.Username != "" && u.HomeDir != "" {
    		return u, nil
    	}
    	var missing string
    	if u.Username == "" {
    		missing = "$USER"
    	}
    	if u.HomeDir == "" {
    		if missing != "" {
    			missing += ", "
    		}
    		missing += "$HOME"
    	}
    	return u, fmt.Errorf("user: Current requires cgo or %s set in environment", missing)
    }
    
    func currentUID() string {
    	if id := os.Getuid(); id >= 0 {
    		return strconv.Itoa(id)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testdata/issue49205.go

    	m /* ERROR unexpected name int in interface type; possibly missing semicolon or newline or } */ int
    }
    
    // other cases where the fix for this issue affects the error message
    
    const (
    	x int = 10 /* ERROR unexpected literal "foo" in grouped declaration; possibly missing semicolon or newline or \) */ "foo"
    )
    
    var _ = []int{1, 2, 3 /* ERROR unexpected name int in composite literal; possibly missing comma or } */ int }
    
    type _ struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 952 bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/testdata/simple.dot

        version=""
        kind=""
        namespace=""
        name=""
        uid="alpha"
        missing="false"
        beingDeleted="false"
        deletingDependents="false"
        virtual="false"
      ];
      "bravo" [
        label="uid=bravo\nnamespace=\n./\n"
        group=""
        version=""
        kind=""
        namespace=""
        name=""
        uid="bravo"
        missing="false"
        beingDeleted="false"
        deletingDependents="false"
        virtual="false"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/testdata/issue43674.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _(... /* ERROR [.][.][.] is missing type */ )
    func _(... /* ERROR [.][.][.] is missing type */ , int)
    
    func _(a, b ... /* ERROR [.][.][.] is missing type */ )
    func _(a, b ... /* ERROR [.][.][.] is missing type */ , x int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 452 bytes
    - Viewed (0)
  10. src/go/parser/testdata/commas.src

    // license that can be found in the LICENSE file.
    
    // Test case for error messages/parser synchronization
    // after missing commas.
    
    package p
    
    var _ = []int{
    	0/* ERROR AFTER "missing ','" */
    }
    
    var _ = []int{
    	0,
    	1,
    	2,
    	3/* ERROR AFTER "missing ','" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 367 bytes
    - Viewed (0)
Back to top