Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,177 for Missing (0.26 sec)

  1. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

        FileMetadataAccessor accessor;
        File missing;
        Path missingPath;
        File directory;
        Path directoryPath;
        File realFile;
        Path realFilePath;
    
        @Setup
        public void prepare() throws IOException {
            accessor = getAccessor(accessorClassName);
            missing = new File(UUID.randomUUID().toString());
            missingPath = missing.toPath();
            directory = File.createTempFile("jmh", "dir");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tests/test_query.py

    def test_query():
        response = client.get("/query")
        assert response.status_code == 422
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["query", "query"],
                        "msg": "Field required",
                        "input": None,
                    }
                ]
            }
        ) | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. test/syntax/chan.go

    package main
    
    type xyz struct {
        ch chan
    } // ERROR "unexpected .*}.* in channel type|missing channel element type"
    
    func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
    }
    
    func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 492 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/typeconversion/MapNotationConverter.java

                }
                if (!optional && value == null) {
                    if (missing == null) {
                        missing = new TreeSet<>();
                    }
                    missing.add(keyName);
                }
                mutableValues.remove(keyName);
                params[i] = value;
            }
            if (missing != null) {
                //below could be better.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/issues0.go

    		_ = float32(340282356779733661637539395458142568448 /* ERROR "cannot convert" */ )
    	)
    }
    
    // Check that a missing identifier doesn't lead to a spurious error cascade.
    func issue8799a() {
    	x, ok := missing /* ERROR "undefined" */ ()
    	_ = !ok
    	_ = x
    }
    
    func issue8799b(x int, ok bool) {
    	x, ok = missing /* ERROR "undefined" */ ()
    	_ = !ok
    	_ = x
    }
    
    func issue9182() {
    	type Point C /* ERROR "undefined" */ .Point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. pilot/test/mock/config.go

    	}
    
    	if _, err := r.Update(missing); err == nil {
    		t.Error("expected error putting missing object with a missing key")
    	}
    
    	// check for missing type
    	if l := r.List(config2.GroupVersionKind{}, namespace); len(l) > 0 {
    		t.Errorf("unexpected objects for missing type")
    	}
    
    	// check for missing element
    	if cfg := r.Get(mockGvk, "missing", ""); cfg != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_import_vendor.txt

    cp incorrect_modules.txt vendor/modules.txt
    # incorrect_modules is missing foo.com/internal/bar/b so the build should fail.
    ! go build ./vendor/foo.com/internal/bar/a
    stderr 'cannot find module providing package foo.com/internal/bar/b: import lookup disabled by -mod=vendor'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_dependencies/test_tutorial006.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
    - 5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_buildvcs.txt

    go list ./testonly
    ! stderr .
    go list -test ./testonly
    ! stderr .
    
    # Again, setting -buildvcs explicitly should force the use of the VCS tool.
    ! go list -buildvcs ./testonly
    stderr '^go: missing Git command\. See https://golang\.org/s/gogetcmd\nerror obtaining VCS status: .*\n\tUse -buildvcs=false to disable VCS stamping.'
    ! go list -buildvcs -test ./testonly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.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.8K bytes
    - Viewed (0)
Back to top