Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 527 for deleteRS (0.29 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            assertJdkWasDownloaded()
    
            when: "the marker file of the auto-provisioned JDK is deleted, making the JDK not detectable"
            //delete marker file to make the previously downloaded installation undetectable
            def markerFile = findMarkerFile(executer.gradleUserHomeDir.file("jdks"))
            markerFile.delete()
            assert !markerFile.exists()
    
            and: "build runs again"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/controller/job/metrics/metrics.go

    	Succeeded = "succeeded"
    	Failed    = "failed"
    
    	// Possible values for "event"  label in the terminated_pods_tracking_finalizer
    	// metric.
    	Add    = "add"
    	Delete = "delete"
    
    	// Possible values for "reason" label in the job_pods_creation_total metric.
    
    	PodCreateNew                   = "new"
    	PodRecreateTerminatingOrFailed = "recreate_terminating_or_failed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. src/go/printer/gobuild.go

    				block = append(block, tabwriter.Escape, '\n')
    			}
    		}
    	}
    	block = append(block, '\n')
    
    	// Build sorted list of lines to delete from remainder of output.
    	toDelete := append(p.goBuild, p.plusBuild...)
    	slices.Sort(toDelete)
    
    	// Collect output after insertion point, with lines deleted, into after.
    	var after []byte
    	start := insert
    	for _, end := range toDelete {
    		if end < start {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    if (outputFile.isFile() && outputFile.length() == 0) {
                        logger.warn("Thumbnail File is empty. ID is {}", thumbnailId);
                        if (outputFile.delete()) {
                            logger.info("Deleted: {}", outputFile.getAbsolutePath());
                        }
                        updateThumbnailField(thumbnailId, StringUtil.EMPTY);
                        return false;
                    }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	// Delete should return previously inserted value
    
    	deleted := index.Delete(wi1)
    	assert.Equal(t, wi1, deleted)
    
    	// GetByIP should return 1 workload instance
    
    	verifyGetByIP("2.2.2.2", []*model.WorkloadInstance{wi3})
    
    	// Delete should return nil since there is no such element in the index
    
    	deleted = index.Delete(wi1)
    	assert.Equal(t, nil, deleted)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. internal/kms/kes.go

    		if errors.Is(err, kes.ErrNotAllowed) {
    			return ErrPermission
    		}
    		return errKeyCreationFailed(err)
    	}
    	return nil
    }
    
    // DeleteKey deletes a key at the KMS with the given key ID.
    // Please note that is a dangerous operation.
    // Once a key has been deleted all data that has been encrypted with it cannot be decrypted
    // anymore, and therefore, is lost.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    include::sample[dir="snippets/base/basePlugin/groovy",files="build.gradle[tags=apply-base-plugin]"]
    ====
    
    [[sec:base_tasks]]
    == Task
    
    `clean` — `Delete`::
    Deletes the build directory and everything in it, i.e. the path specified by the link:{groovyDslPath}/org.gradle.api.file.ProjectLayout.html#org.gradle.api.file.ProjectLayout:buildDirectory[layout.buildDirectory] project property.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

            BuildLayout buildLayout,
            Deleter deleter,
            BuildOperationRunner buildOperationRunner,
            StartParameter startParameter
        ) {
            BuildScopeCacheDir cacheDir = new BuildScopeCacheDir(userHomeDirProvider, buildLayout, startParameter);
            return new ProjectCacheDir(cacheDir.getDir(), buildOperationRunner, deleter);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/expvar/expvar.go

    	if iv, ok := i.(*Float); ok {
    		iv.Add(delta)
    	}
    }
    
    // Delete deletes the given key from the map.
    func (v *Map) Delete(key string) {
    	v.keysMu.Lock()
    	defer v.keysMu.Unlock()
    	i, found := slices.BinarySearch(v.keys, key)
    	if found {
    		v.keys = slices.Delete(v.keys, i, i+1)
    		v.m.Delete(key)
    	}
    }
    
    // Do calls f for each entry in the map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. security/pkg/k8s/chiron/utils.go

    func cleanupCSR(client clientset.Interface, csr *cert.CertificateSigningRequest) error {
    	err := client.CertificatesV1().CertificateSigningRequests().Delete(context.TODO(), csr.Name, metav1.DeleteOptions{})
    	if err != nil {
    		log.Errorf("failed to delete CSR (%v): %v", csr.Name, err)
    	} else {
    		log.Debugf("deleted CSR: %v", csr.Name)
    	}
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top