Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 237 for notFound (0.24 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                )
                ConfigurationCacheAction.STORE
            }
    
            else -> {
                when (val checkedFingerprint = checkFingerprint()) {
                    is CheckedFingerprint.NotFound -> {
                        logBootstrapSummary(
                            "{} as no cached configuration is available for {}",
                            buildActionModelRequirements.actionDisplayName.capitalizedDisplayName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. src/net/http/example_test.go

    	mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
    		// The "/" pattern matches everything, so we need to check
    		// that we're at the root here.
    		if req.URL.Path != "/" {
    			http.NotFound(w, req)
    			return
    		}
    		fmt.Fprintf(w, "Welcome to the home page!")
    	})
    }
    
    // HTTP Trailers are a set of key/value pairs like headers that come
    // after the HTTP response, instead of before.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  3. pkg/registry/apps/replicaset/storage/storage_test.go

    				t.Errorf("notfound patch called")
    				return currentObject, nil
    			}
    		}
    		_, _, err := scaleStore.Update(ctx, "bad-name", rest.DefaultUpdatedObjectInfo(nil, applyNotFoundPatch()), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    		if !apierrors.IsNotFound(err) {
    			t.Errorf("expected notfound, got %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

                    if (!createArtifactResolver(moduleSources).artifactExists((ModuleComponentArtifactMetadata) artifact, new DefaultResourceAwareResolveResult())) {
                        result.notFound(artifact.getId());
                        return;
                    }
                } else if (artifact.getAlternativeArtifact().isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. pkg/registry/core/replicationcontroller/storage/storage_test.go

    				t.Errorf("notfound patch called")
    				return currentObject, nil
    			}
    		}
    		_, _, err := scaleStore.Update(ctx, "bad-name", rest.DefaultUpdatedObjectInfo(nil, applyNotFoundPatch()), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    		if !errors.IsNotFound(err) {
    			t.Errorf("expected notfound, got %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/legacytokentracking/controller_test.go

    			},
    		},
    		{
    			name: "update configmap should ignore NotFound error [cache with unexpected date format, no live object]",
    			existingConfigMap: &corev1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: ConfigMapName},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. pkg/controller/bootstrap/tokencleaner.go

    		if len(secret.UID) > 0 {
    			options.Preconditions = &metav1.Preconditions{UID: &secret.UID}
    		}
    		err := tc.client.CoreV1().Secrets(secret.Namespace).Delete(ctx, secret.Name, options)
    		// NotFound isn't a real error (it's already been deleted)
    		// Conflict isn't a real error (the UID precondition failed)
    		if err != nil && !apierrors.IsConflict(err) && !apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/expvar/expvar_test.go

    	}
    	n = 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 1 {
    		t.Errorf("removed red, Do should invoke f 1 times; got %v", n)
    	}
    
    	colors.Delete("notfound")
    	n = 0
    	colors.Do(func(KeyValue) { n++ })
    	if n != 1 {
    		t.Errorf("attempted to remove notfound, Do should invoke f 1 times; got %v", n)
    	}
    
    	colors.Delete("blue")
    	colors.Delete("blue")
    	if v := colors.Get("blue"); v != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    					Type:  metav1.CauseTypeFieldValueInvalid,
    					Field: "field[0].name",
    				}},
    			},
    			`Kind "name" is invalid: field[0].name: Invalid value: "bar": detail`,
    		},
    		{
    			field.NotFound(field.NewPath("field[0].name"), "bar"),
    			&metav1.StatusDetails{
    				Kind: "Kind",
    				Name: "name",
    				Causes: []metav1.StatusCause{{
    					Type:  metav1.CauseTypeFieldValueNotFound,
    					Field: "field[0].name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. pkg/registry/apps/deployment/storage/storage_test.go

    				t.Errorf("notfound patch called")
    				return currentObject, nil
    			}
    		}
    		_, _, err := scaleStore.Update(ctx, "bad-name", rest.DefaultUpdatedObjectInfo(nil, applyNotFoundPatch()), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    		if !apierrors.IsNotFound(err) {
    			t.Errorf("expected notfound, got %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top