Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for ignoreMe (0.11 sec)

  1. cmd/iam-store.go

    				}
    			}
    		}
    	}
    
    	// It is ok to ignore deletion error on the mapped policy
    	store.deleteMappedPolicy(ctx, accessKey, userType, false)
    	cache.iamUserPolicyMap.Delete(accessKey)
    
    	err := store.deleteUserIdentity(ctx, accessKey, userType)
    	if err == errNoSuchUser {
    		// ignore if user is already deleted.
    		err = nil
    	}
    	delete(cache.iamUsersMap, accessKey)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    						res = append(res, disk)
    					}
    				}
    			}
    		}
    	}
    	return res
    }
    
    // GetRawData will return all files with a given raw path to the callback.
    // Errors are ignored, only errors from the callback are returned.
    // For now only direct file paths are supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    	req.URL.Path = ""
    	ServeFile(rec, req, "testdata")
    	res := rec.Result()
    	if res.StatusCode != 301 {
    		t.Errorf("code = %v; want 301", res.Status)
    	}
    }
    
    // Tests that ranges are ignored with serving empty content. (Issue 54794)
    func TestServeContentWithEmptyContentIgnoreRanges(t *testing.T) {
    	for _, r := range []string{
    		"bytes=0-128",
    		"bytes=1-",
    	} {
    		rec := httptest.NewRecorder()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    // formatted your way; see the values of constants like [ANSIC], [StampMicro] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    				WhenScaled:  apps.RetainPersistentVolumeClaimRetentionPolicyType,
    				WhenDeleted: apps.DeletePersistentVolumeClaimRetentionPolicyType,
    			},
    			shouldMatch: false,
    		},
    		{
    			name: "stale controller ignored, set",
    			ownerRefs: []metav1.OwnerReference{
    				{
    					Name:       "stateful-set",
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					UID:        "set-stale",
    					Controller: ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        params.initial = 1234 // should be ignored. Ideally should fail too
                    }
                }
    
                task second {
                    dependsOn first
                    doFirst {
                        provider.get().increment()
                        params.initial = 456 // should be ignored
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    // *Status and its code is set to non-success if any of the plugins returns
    // anything but Success/Skip.
    // When it returns Skip status, returned PreFilterResult and other fields in status are just ignored,
    // and coupled Filter plugin/PreFilterExtensions() will be skipped in this scheduling cycle.
    // If a non-success status is returned, then the scheduling cycle is aborted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    return visitor;
                } else {
                    return new Visitor() {
                        @Override
                        public void visit(Service service) {
                            // Ignore the decorated service
                            if (service != decorates) {
                                visitor.visit(service);
                            }
                        }
                    };
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top