Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 727 for reallocation (0.24 sec)

  1. src/cmd/link/internal/amd64/asm.go

    			ldr.Errorf(s, "unexpected R_X86_64_64 relocation for dynamic symbol %s", ldr.SymName(targ))
    		}
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_ADDR)
    		if target.IsPIE() && target.IsInternal() {
    			// For internal linking PIE, this R_ADDR relocation cannot
    			// be resolved statically. We need to generate a dynamic
    			// relocation. Let the code below handle it.
    			break
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. pkg/kubelet/status/state/state_mem.go

    	klog.V(3).InfoS("Updated container resource allocation", "podUID", podUID, "containerName", containerName, "alloc", alloc)
    	return nil
    }
    
    func (s *stateMemory) SetPodResourceAllocation(a PodResourceAllocation) error {
    	s.Lock()
    	defer s.Unlock()
    
    	s.podAllocation = a.Clone()
    	klog.V(3).InfoS("Updated pod resource allocation", "allocation", a)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                        }
    
                        if (relocation != null) {
                            if (relocation.getGroupId() != null) {
                                artifact.setGroupId(relocation.getGroupId());
                                relocatedArtifact = artifact;
                                project.setGroupId(relocation.getGroupId());
                            }
                            if (relocation.getArtifactId() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  4. releasenotes/notes/47081.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 47081
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 10 08:44:18 UTC 2023
    - 173 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// the time when allocation started.
    	// +optional
    	DriverName string `json:"driverName,omitempty" protobuf:"bytes,1,opt,name=driverName"`
    
    	// Allocation is set by the resource driver once a resource or set of
    	// resources has been allocated successfully. If this is not specified, the
    	// resources have not been allocated yet.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	// This is a marker relocation (0-sized), for the linker's reachabililty
    	// analysis.
    	R_USEIFACE
    	// R_USEIFACEMETHOD marks an interface method that is used in the function
    	// this relocation is applied to. The target is an interface type descriptor.
    	// The addend is the offset of the method in the type descriptor.
    	// This is a marker relocation (0-sized), for the linker's reachabililty
    	// analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. releasenotes/notes/auto-allocate-dns.yaml

    kind: bug-fix
    area: networking
    issue:
    - 29324
    releaseNotes:
    - |
      **Added** a new experimental proxy option, `DNS_AUTO_ALLOCATE`, to control auto allocation of ServiceEntry addresses. Previously,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 02:28:22 UTC 2020
    - 325 bytes
    - Viewed (0)
  8. src/cmd/link/internal/s390x/asm.go

    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_GLOB_DAT):
    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    		return false
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_390_JMP_SLOT):
    		ldr.Errorf(s, "unimplemented S390x relocation: %v", r.Type()-objabi.ElfRelocOffset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    	// we can always generate a position independent stub.
    	//
    	// For dynamic calls made from an external object, a caller maintains
    	// a TOC pointer only when an R_PPC64_REL24 relocation is used.
    	// An R_PPC64_REL24_NOTOC relocation does not use or maintain
    	// a TOC pointer, and almost always implies a Power10 target.
    	//
    	// For dynamic calls made from a Go caller, a TOC relative stub is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"driverName":            "DriverName is a copy of the driver name from the ResourceClass at the time when allocation started.",
    	"allocation":            "Allocation is set by the resource driver once a resource or set of resources has been allocated successfully. If this is not specified, the resources have not been allocated yet.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top