Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 121 for purego (0.65 sec)

  1. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    		return false, nil
    	}
    
    	// namespace controller does not want the garbage collector to insert the orphan finalizer since it calls
    	// resource deletions generically.  it will ensure all resources in the namespace are purged prior to releasing
    	// namespace itself.
    	background := metav1.DeletePropagationBackground
    	opts := metav1.DeleteOptions{PropagationPolicy: &background}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. cmd/storage-rest-client.go

    // DeleteFile - deletes a file.
    func (client *storageRESTClient) Delete(ctx context.Context, volume string, path string, deleteOpts DeleteOptions) error {
    	if !deleteOpts.Immediate {
    		// add deadlines for all non-immediate purges
    		var cancel context.CancelFunc
    		ctx, cancel = context.WithTimeout(ctx, globalDriveConfig.GetMaxTimeout())
    		defer cancel()
    	}
    
    	_, err := storageDeleteFileRPC.Call(ctx, client.gridConn, &DeleteFileHandlerParams{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. src/debug/dwarf/type.go

    //	       Endian   |    Endian
    //	                |
    //	"j":     27     |     0
    //	"k":     21     |     5
    //	"m":     16     |     11
    //	"n":     8      |     16
    //
    // Note that in the above the offsets are purely with respect to the
    // containing storage unit for j/k/m/n -- these values won't vary based
    // on the size of prior data members in the containing struct.
    //
    // If the compiler emits DW_AT_data_bit_offset, the expected values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. cmd/format-erasure.go

    		return errDiskNotFound
    	}
    
    	// Marshal and write to disk.
    	formatData, err := json.Marshal(format)
    	if err != nil {
    		return err
    	}
    
    	tmpFormat := mustGetUUID()
    
    	// Purge any existing temporary file, okay to ignore errors here.
    	defer disk.Delete(context.TODO(), minioMetaBucket, tmpFormat, DeleteOptions{
    		Recursive: false,
    		Immediate: false,
    	})
    
    	// write to unique file.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    | `implementation`
    | Declaring implementation dependencies
    | no
    | no
    | This is where you declare dependencies which are purely internal and not meant to be exposed to consumers (they are still exposed to consumers at runtime).
    
    | `compileOnly`
    | Declaring compile only dependencies
    | no
    | no
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    By default, `resolvableConfigurations` prints information about all purely resolvable configurations.
    These are configurations that are marked resolvable but *not* marked consumable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. cmd/erasure-healing.go

    			// any valid content, if any is recoverable. But if
    			// notFoundDataDirs are already greater than the data
    			// blocks all bets are off and it is safe to purge.
    			//
    			// This is purely a defensive code, ideally parityBlocks
    			// is sufficient, however we can't know that since we
    			// do have the FileInfo{}.
    			return validMeta, true
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    		//
    		// Note that in the current implementation (Go 1.20) both
    		// routines are assembly stubs that forward calls to the
    		// internal/runtime/atomic equivalents, hence the infinite
    		// loop scenario is purely theoretical (maybe if in some
    		// future implementation one of these functions might be
    		// written in Go). See #57445 for more details.
    		if atomicOnAtomic() && (fname == "AddUint32" || fname == "StoreUint32") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/image/image.go

    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    //
    // See "The Go image package" for more details:
    // https://golang.org/doc/articles/image_package.html
    //
    // # Security Considerations
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    	{"/a/b/c/d", "/a/b/", "../.."},
    	{"/a/b/c/d/", "/a/b", "../.."},
    	{"/a/b/c/d/", "/a/b/", "../.."},
    	{"/../../a/b", "/../../a/b/c/d", "c/d"},
    	{".", "a/b", "a/b"},
    	{".", "..", ".."},
    
    	// can't do purely lexically
    	{"..", ".", "err"},
    	{"..", "a", "err"},
    	{"../..", "..", "err"},
    	{"a", "/a", "err"},
    	{"/a", "a", "err"},
    }
    
    var winreltests = []RelTests{
    	{`C:a\b\c`, `C:a/b/d`, `..\d`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top