Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for Replies (0.11 sec)

  1. cmd/erasure-object.go

    		// the remaining parts.
    		partOffset = 0
    	} // End of read all parts loop.
    	// Return success.
    	return nil
    }
    
    // GetObjectInfo - reads object metadata and replies back ObjectInfo.
    func (er erasureObjects) GetObjectInfo(ctx context.Context, bucket, object string, opts ObjectOptions) (info ObjectInfo, err error) {
    	if !opts.NoAuditLog {
    		auditObjectErasureSet(ctx, object, &er)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    }
    apply(from = "dynamic-groovy-plugin-configuration.gradle")  <3>
    ----
    =====
    ====
    <1> The Groovy script uses dynamic Groovy to configure plugin
    <2> The Kotlin build script requests and applies the plugin
    <3> The Kotlin build script applies the Groovy script
    
    [[kotdsl:limitations]]
    == Limitations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

                              key and values.
                            properties:
                              key:
                                description: key is the label key that the selector applies
                                  to.
                                type: string
                              operator:
                                description: operator represents a key's relationship
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    // can be set to change the compiler based on goos/goarch settings.
    // The following applies to all envNames but CC is assumed to simplify
    // the presentation.
    //
    // If no environment variables are set, we use def for all goos/goarch.
    // $CC, if set, applies to all goos/goarch but is overridden by the following.
    // $CC_FOR_TARGET, if set, applies to all goos/goarch except gohostos/gohostarch,
    // but is overridden by the following.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    	// beginning of prove where we look for all len/cap ops.
    	if v.Op == OpSliceLen && r&lt == 0 && ft.caps[v.Args[0].ID] != nil {
    		// len(s) > w implies cap(s) > w
    		// len(s) >= w implies cap(s) >= w
    		// len(s) == w implies cap(s) >= w
    		ft.update(parent, ft.caps[v.Args[0].ID], w, d, r|gt)
    	}
    	if w.Op == OpSliceLen && r&gt == 0 && ft.caps[w.Args[0].ID] != nil {
    		// same, length on the RHS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Several <<#rel5.0:library_upgrades, library versions used by Gradle>> have been upgraded.
    
    [[changes_5.0]]
    == Upgrading from 4.10 and earlier
    
    If you are not already on version 4.10, skip down to the section that applies to your current Gradle version and work your way up until you reach here. Then, apply these changes when moving from Gradle 4.10 to 5.0.
    
    === Other changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	// APIVersions is the API versions the resources belong to. '*' is all versions.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	APIVersions []string
    
    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    	// 'pods' means pods.
    	// 'pods/log' means the log subresource of pods.
    	// '*' means all resources, but not subresources.
    	// 'pods/*' means all subresources of pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Using the configuration cache, Gradle can skip the configuration phase entirely when nothing that affects the build configuration, such as build scripts, has changed.
    Gradle also applies performance improvements to task execution as well.
    
    The configuration cache is conceptually similar to the <<build_cache#build_cache,build cache>>, but caches different information.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top