Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for RequestId (0.14 sec)

  1. cmd/api-errors.go

    	BucketName       string `xml:"BucketName,omitempty" json:"BucketName,omitempty"`
    	Resource         string
    	Region           string `xml:"Region,omitempty" json:"Region,omitempty"`
    	RequestID        string `xml:"RequestId" json:"RequestId"`
    	HostID           string `xml:"HostId" json:"HostId"`
    	ActualObjectSize string `xml:"ActualObjectSize,omitempty" json:"ActualObjectSize,omitempty"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                            assert it.target == it.requested
                            it.useTarget group: it.requested.group, name: it.requested.module, version: '1.4'
                        }
                        all {
                            assert it.target.version == '1.4'
                            assert it.target.module == it.requested.module
                            assert it.target.group == it.requested.group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			wantInsufficientResources: []InsufficientResource{
    				{ResourceName: v1.ResourceCPU, Reason: getErrReason(v1.ResourceCPU), Requested: 1, Used: 10, Capacity: 10},
    				{ResourceName: v1.ResourceMemory, Reason: getErrReason(v1.ResourceMemory), Requested: 1, Used: 20, Capacity: 20},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        def substitutionReason = "substitution from '\${it.requested.group}:\${it.requested.module}:\$substituteFromVersion' to '\${it.requested.group}:\${it.requested.module}:\$substituteToVersion'"
                        def selector = VERSION_SCHEME.parseSelector(substituteFromVersion)
                        if (it.requested.group.startsWith("org") && selector.accept(it.requested.version)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    //
    // The imports of the returned *loadPkg will be loaded asynchronously in the
    // ld.work queue, and its test (if requested) will also be populated once
    // imports have been resolved. When ld.work goes idle, all transitive imports of
    // the requested package (and its test, if requested) will have been loaded.
    func (ld *loader) pkg(ctx context.Context, path string, flags loadPkgFlags) *loadPkg {
    	if flags.has(pkgImportsLoaded) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// exist after this timestamp, until an administrator or automated process can determine the
    	// resource is fully terminated.
    	// If not set, graceful deletion of the object has not been requested.
    	//
    	// Populated by the system when a graceful deletion is requested.
    	// Read-only.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    				volumeMsg := fmt.Sprintf("Cannot bind PersistentVolume to requested PersistentVolumeClaim %q due to incompatible volumeMode.", claim.Name)
    				ctrl.eventRecorder.Event(volume, v1.EventTypeWarning, events.VolumeMismatch, volumeMsg)
    				claimMsg := fmt.Sprintf("Cannot bind PersistentVolume %q to requested PersistentVolumeClaim due to incompatible volumeMode.", volume.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    // and current versions (even if they are retracted or otherwise excluded).
    func (r *resolver) checkAllowedOr(requested string, selected func(string) string) modload.AllowedFunc {
    	return func(ctx context.Context, m module.Version) error {
    		if m.Version == requested {
    			return modload.CheckExclusions(ctx, m)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/replica_calculator_test.go

    		}
    
    		assert.Equal(t, tc.metric.name, getForAction.GetMetricName(), "the metric requested should have matched the one specified")
    
    		if getForAction.GetName() == "*" {
    			metrics := cmapi.MetricValueList{}
    
    			// multiple objects
    			assert.Equal(t, "pods", getForAction.GetResource().Resource, "the type of object that we requested multiple metrics for should have been pods")
    
    			for i, level := range tc.metric.levels {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/CacheBuilder.java

     * {@link #weakValues weakValues}, or {@link #softValues softValues} are requested.
     *
     * <p>If {@link #maximumSize(long) maximumSize} or {@link #maximumWeight(long) maximumWeight} is
     * requested entries may be evicted on each cache modification.
     *
     * <p>If {@link #expireAfterWrite expireAfterWrite} or {@link #expireAfterAccess expireAfterAccess}
     * is requested entries may be evicted on each cache modification, on occasional cache accesses, or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top