Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 237 for notFound (0.17 sec)

  1. src/net/http/server_test.go

    	mux.HandleFunc("/admin/products/", fn)
    	mux.HandleFunc("/admin/products/create", fn)
    	mux.HandleFunc("/admin/products/update", fn)
    	mux.HandleFunc("/admin/products/delete", fn)
    
    	paths := []string{"/", "/notfound", "/admin/", "/admin/foo", "/contact", "/products",
    		"/products/", "/products/3/image.jpg"}
    	b.StartTimer()
    	for i := 0; i < b.N; i++ {
    		r, err := NewRequest("GET", "http://example.com/"+paths[i%len(paths)], nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	Create(ctx context.Context, key string, obj, out runtime.Object, ttl uint64) error
    
    	// Delete removes the specified key and returns the value that existed at that spot.
    	// If key didn't exist, it will return NotFound storage error.
    	// If 'cachedExistingObject' is non-nil, it can be used as a suggestion about the
    	// current version of the object to avoid read operation from storage to get it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model.cc

    // want to freeze (i.e. its name is contained in variable_node_names). If there
    // is no such handle in the graph (or we do not want to save that variable)
    // then NotFound error is returned.
    StatusOr<string> GetHandleNameIfNeedsToFreeze(
        const std::unordered_map<string, NodeDef*>& name_to_node_map,
        string node_name, const std::unordered_set<string>& variable_node_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. docs/sts/web-identity.go

    		Scopes:      scopes,
    	}
    
    	state := randomState()
    
    	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
    		log.Printf("%s %s", r.Method, r.RequestURI)
    		if r.RequestURI != "/" {
    			http.NotFound(w, r)
    			return
    		}
    		if clientSec != "" {
    			http.Redirect(w, r, config.AuthCodeURL(state), http.StatusFound)
    		} else {
    			http.Redirect(w, r, implicitFlowURL(config, state), http.StatusFound)
    		}
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

                return resolveState.getId();
            }
    
            @Override
            public boolean isVersionListing() {
                return false;
            }
    
            @Override
            public void notFound() {
                found = false;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. pkg/controller/storageversionmigrator/storageversionmigrator.go

    			Patch(ctx,
    				name,
    				types.ApplyPatchType,
    				data,
    				metav1.PatchOptions{
    					FieldManager: svmc.controllerName,
    				},
    			)
    		if err != nil {
    			// in case of NotFound or Conflict, we can stop processing migration for that resource
    			if apierrors.IsNotFound(err) || apierrors.IsConflict(err) {
    				continue
    			}
    
    			_, err = svmc.kubeClient.StoragemigrationV1alpha1().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. internal/grid/msg.go

    	return OpConnectResponse
    }
    
    type muxConnectError struct {
    	Error string
    }
    
    func (muxConnectError) Op() Op {
    	return OpMuxConnectError
    }
    
    type pongMsg struct {
    	NotFound bool    `msg:"nf"`
    	Err      *string `msg:"e,allownil"`
    }
    
    func (pongMsg) Op() Op {
    	return OpPong
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		}
    
    		lastMems[b.ID] = last
    	}
    	return lastMems
    }
    
    // mark values
    type markKind uint8
    
    const (
    	notFound    markKind = iota // block has not been discovered yet
    	notExplored                 // discovered and in queue, outedges not processed yet
    	explored                    // discovered and in queue, outedges processed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /error/error.jsp */
        HtmlNext path_Error_ErrorJsp = new HtmlNext("/error/error.jsp");
    
        /** The path of the HTML: /error/notFound.jsp */
        HtmlNext path_Error_NotFoundJsp = new HtmlNext("/error/notFound.jsp");
    
        /** The path of the HTML: /error/redirect.jsp */
        HtmlNext path_Error_RedirectJsp = new HtmlNext("/error/redirect.jsp");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/fallback_query_param_verifier_test.go

    			primaryError:     errors.NewNotFound(schema.GroupResource{}, "OpenAPI V3 endpoint not found"),
    			expectedSupports: false,
    		},
    	}
    
    	// Primary OpenAPI client always returns "NotFound" error, so secondary verifier is used.
    	fakeOpenAPIClient := openapitest.NewFakeClient()
    	root := openapi3.NewRoot(fakeOpenAPIClient)
    	for tn, tc := range tests {
    		t.Run(tn, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 18:30:16 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top