Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for DELETING (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
      // Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
      bool labelPods = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    		}
    		gset.Remove(group)
    		cache.iamUserGroupMemberships[member] = gset
    	}
    
    	cache.updatedAt = time.Now()
    	return gi.UpdatedAt, nil
    }
    
    // RemoveUsersFromGroup - removes users from group, deleting it if it is empty.
    func (store *IAMStoreSys) RemoveUsersFromGroup(ctx context.Context, group string, members []string) (updatedAt time.Time, err error) {
    	if group == "" {
    		return updatedAt, errInvalidArgument
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top