Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for imageName (0.24 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// In case this value is set, kubeadm does not change automatically the version of the above components during upgrades.
    	// +optional
    	ImageTag string `json:"imageTag,omitempty"`
    
    	//TODO: evaluate if we need also a ImageName based on user feedbacks
    }
    
    // APIEndpoint struct contains elements of API server instance deployed on a node.
    type APIEndpoint struct {
    	// AdvertiseAddress sets the IP address for the API server to advertise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	NumberOfThreadsHighWatermark uint32
    	CycleTime                    uint64
    	CreateTime                   int64
    	UserTime                     int64
    	KernelTime                   int64
    	ImageName                    NTUnicodeString
    	BasePriority                 int32
    	UniqueProcessID              uintptr
    	InheritedFromUniqueProcessID uintptr
    	HandleCount                  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback_windows.go

    		PRUNTIME_FUNCTION FunctionEntry;
    		ULONG64 ImageBase;
    		VOID *HandlerData;
    		ULONG64 EstablisherFrame;
    
    		FunctionEntry = RtlLookupFunctionEntry(ControlPc, &ImageBase, NULL);
    
    		if (!FunctionEntry) {
    			// For simplicity, don't unwind leaf entries, which are not used in this test.
    			break;
    		} else {
    			RtlVirtualUnwind(0, ImageBase, ControlPc, FunctionEntry, &context, &HandlerData, &EstablisherFrame, NULL);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

        @Override
        protected void setUp() throws Exception {
            super.setUp();
    
            final int port = 9000;
            logger.info("Creating {}", IMAGE_NAME);
            minioServer = new GenericContainer<>(IMAGE_NAME)//
                    .withEnv("MINIO_ACCESS_KEY", ACCESS_KEY)//
                    .withEnv("MINIO_SECRET_KEY", SECRET_KEY)//
                    .withExposedPorts(port)//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. common/scripts/setup_env.sh

    TOOLS_REGISTRY_PROVIDER=${TOOLS_REGISTRY_PROVIDER:-gcr.io}
    PROJECT_ID=${PROJECT_ID:-istio-testing}
    if [[ "${IMAGE_VERSION:-}" == "" ]]; then
      IMAGE_VERSION=master-89ff97db972e1ec7d61a7831bf9408f509e17d73
    fi
    if [[ "${IMAGE_NAME:-}" == "" ]]; then
      IMAGE_NAME=build-tools
    fi
    
    DOCKER_GID="${DOCKER_GID:-$(grep '^docker:' /etc/group | cut -f3 -d:)}"
    
    TIMEZONE=$(readlink "$readlink_flags" /etc/localtime | sed -e 's/^.*zoneinfo\///')
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	}
    	defer pf.Close()
    
    	var imageBase uint64
    	switch h := pf.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		imageBase = uint64(h.ImageBase)
    	case *pe.OptionalHeader64:
    		imageBase = uint64(h.ImageBase)
    	default:
    		return nil, fmt.Errorf("unknown OptionalHeader %T", pf.OptionalHeader)
    	}
    
    	var base uint64
    	if start > 0 {
    		base = start - imageBase
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/debug/buildinfo/buildinfo.go

    type peExe struct {
    	f *pe.File
    }
    
    func (x *peExe) imageBase() uint64 {
    	switch oh := x.f.OptionalHeader.(type) {
    	case *pe.OptionalHeader32:
    		return uint64(oh.ImageBase)
    	case *pe.OptionalHeader64:
    		return oh.ImageBase
    	}
    	return 0
    }
    
    func (x *peExe) ReadData(addr, size uint64) ([]byte, error) {
    	addr -= x.imageBase()
    	for _, sect := range x.f.Sections {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/runtime/defs_windows_amd64.go

    	print("cs      ", hex(r.segcs), "\n")
    	print("fs      ", hex(r.segfs), "\n")
    	print("gs      ", hex(r.seggs), "\n")
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    	imageBase        uint64
    	functionEntry    uintptr
    	establisherFrame uint64
    	targetIp         uint64
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/defs_windows_arm.go

    	print("pc   ", hex(r.pc), "\n")
    	print("cpsr ", hex(r.cpsr), "\n")
    }
    
    func stackcheck() {
    	// TODO: not implemented on ARM
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint32
    	imageBase        uint32
    	functionEntry    uintptr
    	establisherFrame uint32
    	targetIp         uint32
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/runtime/defs_windows_arm64.go

    	print("pc   ", hex(r.pc), "\n")
    	print("cpsr ", hex(r.cpsr), "\n")
    }
    
    func stackcheck() {
    	// TODO: not implemented on ARM
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    	imageBase        uint64
    	functionEntry    uintptr
    	establisherFrame uint64
    	targetIp         uint64
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top