Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for Id (0.06 sec)

  1. pkg/kubelet/kubelet.go

    		kl.getCheckpointsDir(),
    		fmt.Sprintf(
    			"checkpoint-%s-%s-%s.tar",
    			podFullName,
    			containerName,
    			time.Now().Format(time.RFC3339),
    		),
    	)
    
    	options.ContainerId = string(container.ID.ID)
    
    	if err := kl.containerRuntime.CheckpointContainer(ctx, options); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	}
    	return sameTarget, toAPIError(ctx, nil)
    }
    
    // performs a http request to remote endpoint to check if deployment id of remote endpoint is same as
    // local cluster deployment id. This is to prevent replication to self, especially in case of a loadbalancer
    // in front of MinIO.
    func checkRemoteEndpoint(ctx context.Context, epURL *url.URL) error {
    	reqURL := &url.URL{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetProcessId(process Handle) (id uint32, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcessId.Addr(), 1, uintptr(process), 0, 0)
    	id = uint32(r0)
    	if id == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    				return
    			}
    			// push the obtained upload ID from the response into the array.
    			testUploads.Lock()
    			testUploads.uploads = append(testUploads.uploads, multipartResponse.UploadID)
    			testUploads.Unlock()
    		}()
    	}
    	// Wait till all go routines finishes execution.
    	wg.Wait()
    	// Validate the upload ID by an attempt to list parts using it.
    	for _, uploadID := range testUploads.uploads {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    	BuildID       string                `json:",omitempty"` // build ID of the compiled package (set by go list -export)
    	Module        *modinfo.ModulePublic `json:",omitempty"` // info about package's module, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	R_RISCV_COPY          R_RISCV = 4  /* Copy data from shared object. */
    	R_RISCV_JUMP_SLOT     R_RISCV = 5  /* Set GOT entry to code address. */
    	R_RISCV_TLS_DTPMOD32  R_RISCV = 6  /* 32 bit ID of module containing symbol */
    	R_RISCV_TLS_DTPMOD64  R_RISCV = 7  /* ID of module containing symbol */
    	R_RISCV_TLS_DTPREL32  R_RISCV = 8  /* 32 bit relative offset in TLS block */
    	R_RISCV_TLS_DTPREL64  R_RISCV = 9  /* Relative offset in TLS block */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ice_skate":                            "\u26f8\ufe0f",
    	"icecream":                             "\U0001f366",
    	"iceland":                              "\U0001f1ee\U0001f1f8",
    	"id":                                   "\U0001f194",
    	"ideograph_advantage":                  "\U0001f250",
    	"imp":                                  "\U0001f47f",
    	"inbox_tray":                           "\U0001f4e5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    	}
    
    	setPutObjHeaders(w, objInfo, false, r.Header)
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the x-amz-copy-source-version-id header key to be literally
    	// "x-amz-copy-source-version-id"- not in canonicalized form, preserve it.
    	if srcOpts.VersionID != "" {
    		w.Header()[strings.ToLower(xhttp.AmzCopySourceVersionID)] = []string{srcOpts.VersionID}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. pkg/apis/apps/validation/validation_test.go

    		if errs := ValidateDaemonSet(&successCase, corevalidation.PodValidationOptions{}); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := map[string]apps.DaemonSet{
    		"zero-length ID": {
    			ObjectMeta: metav1.ObjectMeta{Name: "", Namespace: metav1.NamespaceDefault},
    			Spec: apps.DaemonSetSpec{
    				Selector: &metav1.LabelSelector{MatchLabels: validSelector},
    				Template: validPodTemplate.Template,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/asmz.go

    	op_STHRL   uint32 = 0xC407 // FORMAT_RIL2       STORE HALFWORD RELATIVE LONG
    	op_STHY    uint32 = 0xE370 // FORMAT_RXY1       STORE HALFWORD
    	op_STIDP   uint32 = 0xB202 // FORMAT_S          STORE CPU ID
    	op_STM     uint32 = 0x9000 // FORMAT_RS1        STORE MULTIPLE (32)
    	op_STMG    uint32 = 0xEB24 // FORMAT_RSY1       STORE MULTIPLE (64)
    	op_STMH    uint32 = 0xEB26 // FORMAT_RSY1       STORE MULTIPLE HIGH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top