Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,177 for Missing (0.17 sec)

  1. 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)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/AbstractCachedIndexTest.groovy

                def file = filename.empty ? null : new File(filename)
                def missing = decoder.readBoolean()
                return cachedItem(file, missing)
            }
    
            @Override
            void write(Encoder encoder, CachedItem value) throws Exception {
                encoder.writeString(value.cachedFile?.absolutePath ?: "")
                encoder.writeBoolean(value.missing)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_bigger_applications/test_main.py

                        "type": "value_error.missing",
                    },
                ]
            }
        )
    
    
    def test_put_no_header(client: TestClient):
        response = client.put("/items/foo")
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MetadataFetchingCost.java

         * Can return metadata immediately. It must <b>not</b> be used in case the metadata is missing,
         * even if it's cheap to tell it's missing. Use {@link #CHEAP} in that case.
         */
        FAST,
        /**
         * Can return metadata in a cheap way, or tell that it's missing in a cheap way. The difference with
         * {@link #FAST} is that we can use it for missing metadata.
         */
        CHEAP,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_sum_ambiguous.txt

    grep '^example.com/ambiguous/a/b v0.0.0-empty h1:' go.sum
    
    # If two modules could provide a package, and we're missing a sum for one,
    # we should see a missing sum error, even if we have a sum for a module that
    # provides the package.
    cp go.sum.a-only go.sum
    ! go list example.com/ambiguous/a/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:37:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_dependencies/test_tutorial012.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)
  7. test/fixedbugs/issue48471.go

    	var i I
    	i = new(T)    // ERROR "cannot use new\(T\) \(.*type \*T\) as I value in assignment: \*T does not implement I \(missing method M\)"
    	i = I(new(T)) // ERROR "cannot convert new\(T\) \(.*type \*T\) to type I: \*T does not implement I \(missing method M\)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/local/LocalFileStandInExternalResourceTest.groovy

        }
    
        def "can ignore missing file when using ContentAndMetadataAction"() {
            def file = tmpDir.file("missing")
    
            expect:
            def resource = new LocalFileStandInExternalResource(file, TestFiles.fileSystem())
            resource.withContentIfPresent({} as ExternalResource.ContentAndMetadataAction) == null
        }
    
        def "can fail on missing file when using ContentAndMetadataAction"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_goroot_errors.txt

    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    ! go build nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    # Building a nonexistent std package indirectly should also fail usefully.
    
    ! go build -mod=readonly ./importnonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ComponentIdentifierParserTest.groovy

            [group: 'foo']                              | "Required keys [name, version] are missing from map {group=foo}."
            [name: 'foo']                               | "Required keys [group, version] are missing from map {name=foo}."
            [version: 'foo']                            | "Required keys [group, name] are missing from map {version=foo}."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top