- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 373 for Obj (0.01 sec)
-
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
private Map<Object, Entry> referents; private static class Entry { public Entry ( int referent, Object obj ) { this.referent = referent; this.obj = obj; } final int referent; @SuppressWarnings ( "unused" ) private final Object obj; } public byte[] buf; public int start; public int index; public int length;
Registered: 2024-11-03 00:10 - Last Modified: 2018-07-01 13:12 - 6.6K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle_test.go
} tests := []struct { obj ObjectOpts expRuleID int transRuleID int }{ { obj: obj1, expRuleID: 0, transRuleID: 1, }, { obj: obj2, expRuleID: 0, transRuleID: 2, }, } for i, tc := range tests { w := httptest.NewRecorder() lc.SetPredictionHeaders(w, tc.obj)
Registered: 2024-11-03 19:28 - Last Modified: 2024-05-23 01:12 - 55.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java
@Override public int hashCode() { return id().hashCode(); } @Override public boolean equals(Object obj) { return obj != null && getClass() == obj.getClass() && id().equals(((DefaultExtensibleEnum) obj).id()); } @Override public String toString() { return getClass().getSimpleName() + "[" + id() + "]"; } }
Registered: 2024-11-03 03:35 - Last Modified: 2024-07-10 20:52 - 3.2K bytes - Viewed (0) -
cmd/object-api-deleteobject_test.go
[]string{"object0"}, }, } for i, testCase := range testCases { err := obj.MakeBucket(context.Background(), testCase.bucketName, MakeBucketOptions{}) if err != nil { t.Fatalf("%s : %s", instanceType, err.Error()) } for _, object := range testCase.objectToUploads { md5Bytes := md5.Sum([]byte(object.content))
Registered: 2024-11-03 19:28 - Last Modified: 2024-08-29 01:40 - 4.1K bytes - Viewed (0) -
cmd/batch-expire.go
return err } // Matches returns true if obj matches the filter conditions specified in ef. func (ef BatchJobExpireFilter) Matches(obj ObjectInfo, now time.Time) bool { switch ef.Type { case BatchJobExpireObject: if obj.DeleteMarker { return false } case BatchJobExpireDeleted: if !obj.DeleteMarker { return false } default:
Registered: 2024-11-03 19:28 - Last Modified: 2024-09-18 17:59 - 21.9K bytes - Viewed (0) -
guava/src/com/google/common/graph/EndpointPair.java
Registered: 2024-11-01 12:43 - Last Modified: 2021-10-01 17:18 - 8.1K bytes - Viewed (0) -
docs/bucket/replication/test_del_marker_proxying.sh
loop_count=0 while true; do if [ $loop_count -eq 1000 ]; then break fi echo "Hello World" | ./mc pipe sitea/bucket/obj$loop_count ./mc rm sitea/bucket/obj$loop_count RESULT=$({ ./mc stat --no-list sitea/bucket/obj$loop_count; } 2>&1) if [[ ${RESULT} != *"Object does not exist"* ]]; then echo "BUG: stat should fail. succeeded." exit_1 fi loop_count=$((loop_count + 1)) done
Registered: 2024-11-03 19:28 - Last Modified: 2024-09-29 22:40 - 2.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java
} @Override public boolean equals(Object obj) { if (this == obj) { return true; } // make sure IncludesArtifactFilter is not equal ExcludesArtifactFilter! if (obj == null || getClass() != obj.getClass()) { return false; } IncludesArtifactFilter other = (IncludesArtifactFilter) obj; return patterns.equals(other.patterns); }
Registered: 2024-11-03 03:35 - Last Modified: 2024-10-25 12:31 - 2.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-30 16:15 - 4.1K bytes - Viewed (0) -
docs/sts/custom-token-identity.go
objCh := minioClient.ListObjects(context.Background(), bucketToList, minio.ListObjectsOptions{}) for obj := range objCh { if obj.Err != nil { log.Fatalf("Listing error: %v", obj.Err) } fmt.Printf("Key: %s\nSize: %d\nLast Modified: %s\n===\n", obj.Key, obj.Size, obj.LastModified) }
Registered: 2024-11-03 19:28 - Last Modified: 2022-05-27 00:58 - 3.4K bytes - Viewed (0)