Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 365 for DELETING (0.19 sec)

  1. docs/bucket/versioning/README.md

    - All versions, including delete-markers should be deleted before deleting a bucket.
    - **Versioning feature is only available in erasure coded and distributed erasure coded setups**.
    
    ## How to configure versioning on a bucket
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            def executable = executable("build/exe/main/main")
            executable.assertExists()
    
            when:
            file("src/main").eachFileRecurse(FileType.FILES) {
                println "deleting ${it}"
                it.delete()
            }
    
            and:
            run "mainExecutable"
    
            then: "linker output file is removed"
            executable.assertDoesNotExist()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/tape.h

      std::vector<TapeTensor> output_tensor_info;
      std::vector<int64_t> input_tensor_id;
    
      // TODO(apassos) consider narrowing down this interface.
      BackwardFunction* backward_function;
    
      // Should be called before deleting the backward function. TODO(apassos) use
      // unique_ptrs to ensure this happens.
      std::function<void(BackwardFunction*)> backward_function_deleter;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  4. pkg/volume/portworx/portworx_util.go

    	if err != nil || driver == nil {
    		klog.Errorf("Failed to get portworx driver. Err: %v", err)
    		return err
    	}
    
    	err = driver.Delete(d.volumeID)
    	if err != nil {
    		klog.Errorf("Error deleting Portworx Volume (%v): %v", d.volName, err)
    		return err
    	}
    	return nil
    }
    
    // AttachVolume attaches a Portworx Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. internal/kms/kms.go

    // and options for creating keys.
    type CreateKeyRequest struct {
    	// Name is the name of the key that gets created.
    	Name string
    }
    
    // DeleteKeyRequest is a structure containing fields
    // and options for deleting keys.
    type DeleteKeyRequest struct {
    	// Name is the name of the key that gets deleted.
    	Name string
    }
    
    // GenerateKeyRequest is a structure containing fields
    // and options for generating data keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/util/iptables/iptables.go

    	fullArgs := makeFullArgs(table, chain)
    
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    
    	out, err := runner.run(opDeleteChain, fullArgs)
    	if err != nil {
    		return fmt.Errorf("error deleting chain %q: %v: %s", chain, err, out)
    	}
    	return nil
    }
    
    // EnsureRule is part of Interface.
    func (runner *runner) EnsureRule(position RulePosition, table Table, chain Chain, args ...string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	// managed by the attach/detach attached controller, this is a no-op.
    	// If no volume with the name volumeName exists in the list of managed
    	// volumes under the specified node, this is a no-op.
    	// If after deleting the pod, the specified volume contains no other child
    	// pods, the volume is also deleted.
    	DeletePod(podName types.UniquePodName, volumeName v1.UniqueVolumeName, nodeName k8stypes.NodeName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/hns.go

    		// TODO: The logic in syncProxyRules  should be rewritten in the future to better stage and handle a call like this failing using the policyApplied fields.
    		klog.V(1).ErrorS(err, "Error deleting Hns loadbalancer policy resource. Attempting one more time...", "loadBalancer", lb)
    		return hns.hcn.DeleteLoadBalancer(lb)
    	}
    	return err
    }
    
    // Calculates a hash from the given endpoint IDs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. pkg/volume/fc/fc_util.go

    func flushDevice(deviceName string, exec utilexec.Interface) {
    	out, err := exec.Command("blockdev", "--flushbufs", deviceName).CombinedOutput()
    	if err != nil {
    		// Ignore the error and continue deleting the device. There is will be no retry on error.
    		klog.Warningf("Failed to flush device %s: %s\n%s", deviceName, err, string(out))
    	}
    	klog.V(4).Infof("Flushed device %s", deviceName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  10. cmd/ftp-server-driver.go

    	stopFn := globalFtpMetrics.log(ctx, objPath)
    	defer stopFn(0, err)
    
    	bucket, prefix := path2BucketObject(objPath)
    	if bucket == "" {
    		return errors.New("deleting all buckets not allowed")
    	}
    
    	clnt, err := driver.getMinIOClient(ctx)
    	if err != nil {
    		return err
    	}
    
    	cctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top