Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 727 for reallocation (0.38 sec)

  1. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				claim.Status.DeallocationRequested = false
    				claim.Status.Allocation = nil
    				return claim
    			},
    		},
    		"invalid-deallocation-requested-removal": {
    			wantFailures: field.ErrorList{field.Forbidden(field.NewPath("status", "deallocationRequested"), "may not be cleared when `allocation` is set")},
    			oldClaim: func() *resource.ResourceClaim {
    				claim := validAllocatedClaim.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation.go

    				}
    			}
    		}
    	}
    
    	// Updates to a populated resourceClaim.Status.Allocation are not allowed
    	if oldClaim.Status.Allocation != nil && resourceClaim.Status.Allocation != nil {
    		allErrs = append(allErrs, apimachineryvalidation.ValidateImmutableField(resourceClaim.Status.Allocation, oldClaim.Status.Allocation, fldPath.Child("allocation"))...)
    	}
    
    	if !oldClaim.Status.DeallocationRequested &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	claim := state.claims[index]
    	allocationPatch := ""
    
    	allocation := state.informationsForClaim[index].allocation
    	logger.V(5).Info("preparing claim status patch", "claim", klog.KObj(state.claims[index]), "allocation", klog.Format(allocation))
    
    	// Do we need to store an allocation result from Reserve?
    	if allocation != nil {
    		buffer, err := json.Marshal(allocation)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					// Claims with delayed allocation and structured parameters get deallocated immediately.
    					changes: change{
    						claim: func(in *resourcev1alpha2.ResourceClaim) *resourcev1alpha2.ResourceClaim {
    							return st.FromResourceClaim(in).
    								Allocation("", nil).
    								Obj()
    						},
    					},
    					status: framework.NewStatus(framework.Unschedulable, `deallocation of ResourceClaim completed`),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.h

      /*** EVENT CALLBACKS ***/
      // Create SP_Event. Performs platform-specific allocation and initialization
      // of an event.
      void (*create_event)(const SP_Device* device, SP_Event* event,
                           TF_Status* status);
    
      // Destroy SE_Event and perform any platform-specific deallocation and
      // cleanup of an event.
      void (*destroy_event)(const SP_Device* device, SP_Event event);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  6. releasenotes/notes/serviceentry-ip-auto-allocation.yaml

    Yang Liu <******@****.***> 1663853708 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 13:35:08 UTC 2022
    - 210 bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/controller.go

    		claim := claim.DeepCopy()
    		if claim.Status.Allocation != nil {
    			// This can happen when a claim with immediate allocation
    			// stopped being used, remained allocated, and then got
    			// deleted. As above we then need to clear the allocation.
    			claim.Status.Allocation = nil
    			var err error
    			claim, err = ec.kubeClient.ResourceV1alpha2().ResourceClaims(claim.Namespace).UpdateStatus(ctx, claim, metav1.UpdateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/tests/publish-specify-relocation.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java

            if (distMgmt != null) {
                Relocation relocation = distMgmt.getRelocation();
                if (relocation != null) {
                    Artifact result = new RelocatedArtifact(
                            artifactDescriptorResult.getRequest().getArtifact(),
                            relocation.getGroupId(),
                            relocation.getArtifactId(),
                            null,
                            null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/debug/elf/testdata/go-relocation-test-gcc441-x86.obj

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
Back to top