Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for setitimer (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

                    return null;
                }
            }
    
            private ZipArchiveEntry newZipEntryWithFixedTime(String name) {
                ZipArchiveEntry entry = new ZipArchiveEntry(name);
                entry.setTime(ZipCopyAction.CONSTANT_TIME_FOR_ZIP_ENTRIES);
                return entry;
            }
    
            private void configureCompression(ZipArchiveEntry entry, CompressionMethod compressionMethod, byte[] contents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/legacytokentracking/controller_test.go

    				controller.configMapCache.Delete(&corev1.ConfigMap{
    					ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: ConfigMapName},
    				})
    				controller.clock.(*testingclock.FakeClock).SetTime(createAt)
    				if err := controller.syncConfigMap(); err != nil {
    					t.Errorf("Failed to sync ConfigMap, err: %v", err)
    				}
    			}
    
    			if diff := cmp.Diff(test.expectedActions, client.Actions()); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. cmd/warm-backend-azure.go

    	blobURL := az.serviceURL.NewContainerURL(az.Bucket).NewBlockBlobURL(az.getDest(object))
    	// set tier if specified -
    	if az.StorageClass != "" {
    		if _, err := blobURL.SetTier(ctx, az.tier(), azblob.LeaseAccessConditions{}, azblob.RehydratePriorityStandard); err != nil {
    			return "", azureToObjectError(err, az.Bucket, object)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top