Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for DELETING (0.13 sec)

  1. tensorflow/c/c_api.h

    // to `g`. Once `func`/`grad` is added to `g`, it can be called by creating
    // an operation using the function's name.
    // Any changes to `func`/`grad` (including deleting it) done after this method
    // returns, won't affect the copy of `func`/`grad` in `g`.
    // If `func` or `grad` are already in `g`, TF_GraphCopyFunction has no
    // effect on them, but can establish the function->gradient relationship
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	} else {
    		err = Rename(filePath, targetPath)
    	}
    
    	var targetPath2 string
    	if immediatePurge && HasSuffix(filePath, SlashSeparator) {
    		// With immediate purge also attempt deleting for `__XL_DIR__` folder/directory objects.
    		targetPath2 = pathutil.Join(s.drivePath, minioMetaTmpDeletedBucket, mustGetUUID())
    		renameAll(encodeDirObject(filePath), targetPath2, pathutil.Join(s.drivePath, minioMetaBucket))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

        }
    
        protected void delete(final String entryDN, final Supplier<Hashtable<String, String>> envSupplier) {
            try (DirContextHolder holder = getDirContext(envSupplier)) {
                logger.debug("Deleting {}", entryDN);
                holder.get().destroySubcontext(entryDN);
            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to delete " + entryDN, e);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ----
    task moveFile(type: Copy) {
        from 'source.txt'
        into 'destination'
        rename { fileName ->
            'new_name.txt'
        }
    }
    ----
    
    [[sec:deleting_files_example]]
    == Deleting files and directories
    
    Deleting files and directories in Gradle involves removing them from the file system.
    
    === Using the `Delete` task
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    	// during pod eviction (when we wish to remove that content to free resources)
    	// as well as after the request to delete a pod has resulted in containers being
    	// stopped (which is a more graceful action). Note that a deleting pod can still
    	// be evicted.
    	//
    	// Intended for use by subsystem sync loops to know when to start tearing down
    	// resources that are used by non-deleted pods. Content is generally preserved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	DryRunAll = "All"
    )
    
    // +k8s:conversion-gen:explicit-from=net/url.Values
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // DeleteOptions may be provided when deleting an API object.
    type DeleteOptions struct {
    	TypeMeta `json:",inline"`
    
    	// The duration in seconds before the object should be deleted. Value must be non-negative integer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. pilot/pkg/serviceregistry/serviceregistry_test.go

    					t.Fatal(err)
    				}
    				expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", nil, nodeMeta)
    			})
    
    			t.Run("ServiceEntry selects Pod: deleting pod", func(t *testing.T) {
    				s := xds.NewFakeDiscoveryServer(t, opts)
    				makeIstioObject(t, s.Store(), serviceEntry)
    				makePod(t, s.KubeClient().Kube(), pod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    				tx.Delete(&knftables.Chain{
    					Name: chain,
    				})
    				delete(proxier.staleChains, chain)
    				deleted++
    			}
    		}
    		if deleted > 0 {
    			proxier.logger.Info("Deleting stale nftables chains", "numChains", deleted)
    			err := proxier.nftables.Run(context.TODO(), tx)
    			if err != nil {
    				// We already deleted the entries from staleChains, but if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    //
    // Test then selects subset of params that should match provided configuration
    // and ensuers those params are the only ones used.
    //
    // Also ensures NotFound action is enforced correctly by deleting all found
    // params and ensuring the Action is used.
    //
    // This test is not meant to test every possible scenario of matching/not matching:
    // only that each ParamRef CAN be evaluated correctly for both cluster scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// volume claims created from volumeClaimTemplates. By default, all persistent
    	// volume claims are created as needed and retained until manually deleted. This
    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    	// down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
    	// which is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top