Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for deleteRS (0.19 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

            Path afterPomFile =
                    Paths.get("src/test/resources/projects/transform/after.pom").toAbsolutePath();
            Path tempFile = Files.createTempFile("", ".pom");
            Files.delete(tempFile);
            try (InputStream expected = Files.newInputStream(beforePomFile)) {
                Model model = new Model(new MavenStaxReader().read(expected));
                MavenProject project = new MavenProject(model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedGlobalScopeServices.java

    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.file.Deleter;
    import org.gradle.internal.file.impl.DefaultDeleter;
    import org.gradle.internal.hash.DefaultStreamHasher;
    import org.gradle.internal.hash.StreamHasher;
    import org.gradle.internal.installation.CurrentGradleInstallation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. docs/distributed/decom-compressed-sse-s3.sh

    ./mc admin policy attach myminio/ rw --user=minio123
    ./mc admin policy attach myminio/ lake --user=minio12345
    
    ./mc mb -l myminio/versioned
    
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    ## Soft delete (creates delete markers)
    ./mc rm -r --force myminio/versioned >/dev/null
    
    ## mirror again to create another set of version on top
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pkg/slices/slices.go

    func Clone[S ~[]E, E any](s S) S {
    	return slices.Clone(s)
    }
    
    // Delete removes the element i from s, returning the modified slice.
    func Delete[S ~[]E, E any](s S, i int) S {
    	// Since Go 1.22, "slices.Delete zeroes the elements s[len(s)-(j-i):len(s)]"
    	// (no memory leak)
    	return slices.Delete(s, i, i+1)
    }
    
    // Contains reports whether v is present in s.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

        extends AbstractConfigurationCacheIntegrationTest
        implements FileAccessTimeJournalFixture {
    
        @Ignore('https://github.com/gradle/gradle-private/issues/3121')
        def "cleanup deletes old entries"() {
            given:
            executer.requireIsolatedDaemons()
            writeJournalInceptionTimestamp(daysAgo(8))
            gcFile.createFile().lastModified = daysAgo(8)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. docs/distributed/decom-encrypted.sh

    ./mc admin policy attach myminio/ rw --user=minio123
    ./mc admin policy attach myminio/ lake --user=minio12345
    
    ./mc mb -l myminio/versioned
    
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    ## Soft delete (creates delete markers)
    ./mc rm -r --force myminio/versioned >/dev/null
    
    ## mirror again to create another set of version on top
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/go/types/resolver_test.go

    		ast.Inspect(f, func(n ast.Node) bool {
    			if x, ok := n.(*ast.Ident); ok {
    				var objects int
    				if _, found := uses[x]; found {
    					objects |= 1
    					delete(uses, x)
    				}
    				if _, found := defs[x]; found {
    					objects |= 2
    					delete(defs, x)
    				}
    				if objects == 0 {
    					t.Errorf("%s: unresolved identifier %s", fset.Position(x.Pos()), x.Name)
    				} else if objects == 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin.go

    	filterMap map[extensions.PluginPhase][]*model.WasmPluginWrapper,
    	phase extensions.PluginPhase,
    ) []*hcm.HttpFilter {
    	for _, ext := range filterMap[phase] {
    		list = append(list, toEnvoyHTTPFilter(ext))
    	}
    	delete(filterMap, phase)
    	return list
    }
    
    // PopAppendNetwork takes a list of filters and a set of WASM plugins, keyed by phase. It will remove all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/waiting_pods_map.go

    	m.mu.Lock()
    	defer m.mu.Unlock()
    	m.pods[wp.GetPod().UID] = wp
    }
    
    // remove a WaitingPod from the map.
    func (m *waitingPodsMap) remove(uid types.UID) {
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	delete(m.pods, uid)
    }
    
    // get a WaitingPod from the map.
    func (m *waitingPodsMap) get(uid types.UID) *waitingPod {
    	m.mu.RLock()
    	defer m.mu.RUnlock()
    	return m.pods[uid]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    	if err != nil {
    		return nil, nil, err
    	}
    	o, err := json.Marshal(filteredMap)
    	return o, filteredMap, err
    }
    
    // keepOrDeleteNullInObj will keep only the null value and delete all the others,
    // if keepNull is true. Otherwise, it will delete all the null value and keep the others.
    func keepOrDeleteNullInObj(m map[string]interface{}, keepNull bool) (map[string]interface{}, error) {
    	filteredMap := make(map[string]interface{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top