Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for inf2 (0.12 sec)

  1. cmd/site-replication.go

    	c.RLock()
    	defer c.RUnlock()
    	if !c.enabled {
    		return info, nil
    	}
    
    	info.Enabled = true
    	info.Name = c.state.Name
    	info.Sites = make([]madmin.PeerInfo, 0, len(c.state.Peers))
    	for _, peer := range c.state.Peers {
    		info.Sites = append(info.Sites, peer)
    	}
    	sort.Slice(info.Sites, func(i, j int) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    		ci.Info.NoOfDrives = len(si.Disks)
    		for _, disk := range si.Disks {
    			ci.Info.TotalDriveSpace += disk.TotalSpace
    			ci.Info.UsedDriveSpace += disk.UsedSpace
    		}
    
    		dataUsageInfo, _ := loadDataUsageFromBackend(ctx, objectAPI)
    
    		ci.UsedCapacity = dataUsageInfo.ObjectsTotalSize
    		ci.Info.NoOfBuckets = dataUsageInfo.BucketsCount
    		ci.Info.NoOfObjects = dataUsageInfo.ObjectsTotalCount
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			if x.Maybe() {
    				f := func() { ch.Recv() }
    				info = append(info, caseInfo{desc: "blocking send", helper: f})
    			} else {
    				info = append(info, caseInfo{desc: "blocking send"})
    			}
    		}
    
    		// Blocking recv.
    		if x.Maybe() {
    			ch, val := newop(len(cases), 0)
    			cases = append(cases, SelectCase{
    				Dir:  SelectRecv,
    				Chan: ch,
    			})
    			// Let it execute?
    			if x.Maybe() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    // ELF32 Symbol.
    type Sym32 struct {
    	Name  uint32
    	Value uint32
    	Size  uint32
    	Info  uint8
    	Other uint8
    	Shndx uint16
    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    func ST_INFO(bind SymBind, typ SymType) uint8 {
    	return uint8(bind)<<4 | uint8(typ)&0xf
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		Happy:
    			if cfg.ModulesEnabled {
    				// Override data.p.Root, since ImportDir sets it to $GOPATH, if
    				// the module is inside $GOPATH/src.
    				if info := modload.PackageModuleInfo(ctx, path); info != nil {
    					data.p.Root = info.Dir
    				}
    			}
    			if r.err != nil {
    				if data.err != nil {
    					// ImportDir gave us one error, and the module loader gave us another.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		wantSize := int64(-1)
    		if size >= 0 {
    			info := ObjectInfo{Size: size}
    			wantSize = info.EncryptedSize()
    		}
    
    		// do not try to verify encrypted content
    		hashReader, err = hash.NewReader(ctx, etag.Wrap(reader, hashReader), wantSize, "", "", actualSize)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	b.flagCache[key] = supported
    	return supported
    }
    
    // statString returns a string form of an os.FileInfo, for serializing and comparison.
    func statString(info os.FileInfo) string {
    	return fmt.Sprintf("stat %d %x %v %v\n", info.Size(), uint64(info.Mode()), info.ModTime(), info.IsDir())
    }
    
    // gccCompilerID returns a build cache key for the current gcc,
    // as identified by running 'compiler'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		ret = syscall.Errno(r0)
    	}
    	return
    }
    
    func ChangeServiceConfig2(service Handle, infoLevel uint32, info *byte) (err error) {
    	r1, _, e1 := syscall.Syscall(procChangeServiceConfig2W.Addr(), 3, uintptr(service), uintptr(infoLevel), uintptr(unsafe.Pointer(info)))
    	if r1 == 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)
  9. pkg/kubelet/kubelet_pods.go

    		return err
    	}
    
    	return kl.containerRuntime.GetContainerLogs(ctx, pod, containerID, logOptions, stdout, stderr)
    }
    
    // getPhase returns the phase of a pod given its container info.
    func getPhase(pod *v1.Pod, info []v1.ContainerStatus, podIsTerminal bool) v1.PodPhase {
    	spec := pod.Spec
    	pendingInitialization := 0
    	failedInitialization := 0
    
    	// regular init containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            function_name_uniquifier_(function_name_uniquifier),
            error_handler_(module.getContext()) {
        // Log import config.
        if (VLOG_IS_ON(1)) {
          LOG(INFO) << "Importing with: " << specs.str();
          for (auto& it : *tf_name_to_mlir_name) {
            LOG(INFO) << "\t" << it.first << " -> " << it.second;
          }
        }
    
        stack_traces_ = LoadTracesFromDebugInfo(debug_info_);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top