Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 985 for Missing (0.1 sec)

  1. pkg/kubelet/apis/config/helpers_test.go

    	if !expect.Equal(result) {
    		// expected fields missing from result
    		missing := expect.Difference(result)
    
    		// unexpected fields in result but not specified in expect
    		unexpected := result.Difference(expect)
    
    		if len(missing) > 0 {
    			t.Errorf("the following fields were expected, but missing from the result:\n%s", strings.Join(sets.List(missing), "\n"))
    		}
    		if len(unexpected) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_request_files/test_tutorial002_an.py

                        "type": "value_error.missing",
                    }
                ]
            }
        )
    
    
    def test_post_body_json():
        response = client.post("/files/", json={"file": "Foo"})
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["body", "files"],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_dependencies/test_tutorial006_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
    - 5K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/extensionprovider_test.go

    			},
    			valid: true,
    		},
    		{
    			name: "lightstep service with missing port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_LightstepTracingProvider{
    				Service:     "10.0.0.100",
    				AccessToken: "abcdefg1234567",
    			},
    			valid: false,
    		},
    		{
    			name: "lightstep service with missing accesstoken",
    			config: &meshconfig.MeshConfig_ExtensionProvider_LightstepTracingProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | notDefined()  | _             | "append to missing"                               | { it.append("1") }
            null        | notDefined()  | ["0"]         | "add to missing w/ non-empty convention"          | { it.add("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - artifact metadata missing
    - extension metadata missing
    - extension artifact missing
    - artifact metadata retrieval problem
    - version range violation
    - circular dependency
    - artifact missing
    - artifact retrieval exception
    - md5 checksum doesn't match for local artifact, need to redownload this
    - POM doesn't exist for a goal that requires one
    - parent POM missing (in both the repository + relative path)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessor.java

                case Directory:
                    return DefaultFileMetadata.directory(accessType);
                case Missing:
                    return DefaultFileMetadata.missing(accessType);
                case Other:
                    throw new UncheckedIOException("Unsupported file type for " + f.getAbsolutePath());
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager_test.go

    	m.workerLock.RLock()
    	defer m.workerLock.RUnlock()
    
    	var unexpected []probeKey
    	missing := make([]probeKey, len(expectedProbes))
    	copy(missing, expectedProbes)
    
    outer:
    	for probePath := range m.workers {
    		for i, expectedPath := range missing {
    			if probePath == expectedPath {
    				missing = append(missing[:i], missing[i+1:]...)
    				continue outer
    			}
    		}
    		unexpected = append(unexpected, probePath)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_request_files/test_tutorial002_an_py39.py

        response = client.post("/files/")
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["body", "files"],
                        "msg": "Field required",
                        "input": None,
                    }
                ]
            }
        ) | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeAnnotatedMethodReader.java

                .orElseThrow(() -> new AnnotationReadFailure(String.format("Missing 'deprecation' attribute in @%s", ReplacesEagerProperty.class.getSimpleName())));
            boolean enabled = AnnotationUtils.findAnnotationValueWithDefaults(elements, deprecation, "enabled")
                .map(annotationValue -> (Boolean) annotationValue.getValue())
                .orElseThrow(() -> new AnnotationReadFailure("Missing 'enabled' attribute in @ReplacedDeprecation"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top