Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 125 for notFound (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. operator/pkg/tpath/struct_test.go

    			rnode := make(map[string]any)
    			if err := yaml.Unmarshal([]byte(tt.nodeYAML), &rnode); err != nil {
    				t.Fatal(err)
    			}
    			GotOut, GotFound, gotErr := GetFromStructPath(rnode, tt.path)
    			if GotFound != tt.wantFound {
    				t.Fatalf("GetFromStructPath(%s): gotFound:%v, wantFound:%v", tt.desc, GotFound, tt.wantFound)
    			}
    			if gotErr, wantErr := errToString(gotErr), tt.wantErr; gotErr != wantErr {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/internal/bytealg/index_arm64.s

    loop_8:
    	// R6 contains substring for comparison
    	CMP	R4, R0
    	BHI	not_found
    	MOVD.P	1(R0), R6
    	CMP	R5, R6
    	BNE	loop_8
    	B	found
    len_2_7:
    	TBZ	$2, R3, len_2_3
    	TBZ	$1, R3, len_4_5
    	TBZ	$0, R3, len_6
    len_7:
    	// R5 and R6 contain 7-byte of sep
    	MOVWU	(R2), R5
    	// 1-byte overlap with R5
    	MOVWU	3(R2), R6
    loop_7:
    	CMP	R4, R0
    	BHI	not_found
    	MOVWU.P	1(R0), R3
    	CMP	R5, R3
    	BNE	loop_7
    	MOVWU	2(R0), R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 23 15:54:07 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

          // Other combinations are inherited from SortedSetTestSuiteBuilder.
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

          // Other combinations are inherited from SortedMapTestSuiteBuilder.
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top