Search Options

Results per page
Sort
Preferred Languages
Advance

Results 831 - 840 of 1,165 for REMOVE (0.04 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    			Action: action,
    			Due:    now,
    		})
    	}
    
    	for _, rule := range lc.FilterRules(obj) {
    		if obj.ExpiredObjectDeleteMarker() {
    			if rule.Expiration.DeleteMarker.val {
    				// Indicates whether MinIO will remove a delete marker with no noncurrent versions.
    				// Only latest marker is removed. If set to true, the delete marker will be expired;
    				// if set to false the policy takes no action. This cannot be specified with Days or
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/server_test.go

    	m := getFakeDPWithIPSet(server, fakeClientSet, set)
    	expectPodRemovedFromIPSet(fakeIPSetDeps, pod.Status.PodIPs)
    
    	// pod is not in fake client, so if this will try to remove annotation, it will fail.
    	err := m.RemovePodFromMesh(fakeCtx, pod, true)
    
    	fakeIPSetDeps.AssertExpectations(t)
    
    	assert.NoError(t, err)
    }
    
    func TestMeshDataplaneDelPodErrorDoesntPatchPod(t *testing.T) {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsElevateWordToLabelBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsJobLogBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsRoleTypeBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchDelete(new BulkList<>(list, call, entityCall), null);
        }
    
        // #pending create, modify, remove
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                }
                haveBeenCalled = true;
                return 0;
              }
            };
    
        assertEquals(0, (int) iter.next());
    
        assertThrows(UnsupportedOperationException.class, iter::remove);
      }
    
      public void testReentrantHasNext() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              @Override
              protected Integer computeNext() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                }
                haveBeenCalled = true;
                return 0;
              }
            };
    
        assertEquals(0, (int) iter.next());
    
        assertThrows(UnsupportedOperationException.class, iter::remove);
      }
    
      public void testReentrantHasNext() {
        Iterator<Integer> iter =
            new AbstractIterator<Integer>() {
              @Override
              protected Integer computeNext() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tests/test_jsonable_encoder.py

        subclass_model = ModelWithCustomEncoderSubclass(dt_field=datetime(2019, 1, 1, 8))
        assert jsonable_encoder(subclass_model) == {"dt_field": "2019-01-01T08:00:00+00:00"}
    
    
    # TODO: remove when deprecating Pydantic v1
    @needs_pydanticv1
    def test_encode_custom_json_encoders_model_pydanticv1():
        class ModelWithCustomEncoder(BaseModel):
            dt_field: datetime
    
            class Config:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top