Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,556 for free1 (0.13 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    						// or the input is dead, free the registers. This may make room
    						// for other inputs.
    						oldregs := s.values[v.Args[i.idx].ID].regs
    						if oldregs&^regspec.clobbers == 0 || !s.liveAfterCurrentInstruction(v.Args[i.idx]) {
    							s.freeRegs(oldregs &^ mask &^ s.nospill)
    							freed = true
    						}
    					}
    				}
    				if !freed {
    					break
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. internal/disk/stat_windows.go

    	// amount of free space available to the user that is associated with the calling thread.
    	GetDiskFreeSpaceEx = kernel32.NewProc("GetDiskFreeSpaceExW")
    
    	// GetDiskFreeSpace - https://msdn.microsoft.com/en-us/library/windows/desktop/aa364935(v=vs.85).aspx
    	// Retrieves information about the specified disk, including the amount of free space on the disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental.h

    TF_CAPI_EXPORT extern const char* TF_GraphDebugString(TF_Graph* graph,
                                                          size_t* len);
    
    // Returns the function content in a human-readable format, with length set in
    // `len`. The format is subject to change in the future.
    // The returned string is heap-allocated, and caller should call free() on it.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java

    /*
     * © 2017 AgNO3 Gmbh & Co. KG
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  5. internal/disk/stat_netbsd.go

    		Ffree:  uint64(s.Ffree),
    		FSType: string(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    func GetDriveStats(major, minor uint32) (iostats IOStats, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			}
    			if f := r.Free(); f != 1 {
    				t.Errorf("[%s] wrong free: expected %d, got %d", tc.name, 1, f)
    			}
    			if f := r.Used(); f != (tc.free - 1) {
    				t.Errorf("[%s] wrong free: expected %d, got %d", tc.name, tc.free-1, f)
    			}
    			if err := r.Allocate(released); err != nil {
    				t.Fatal(err)
    			}
    			if f := r.Free(); f != 0 {
    				t.Errorf("[%s] wrong free: expected %d, got %d", tc.name, 0, f)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. src/log/slog/handler.go

    		*s.groups = append(*s.groups, h.groups[:h.nOpenGroups]...)
    	}
    	return s
    }
    
    func (s *handleState) free() {
    	if s.freeBuf {
    		s.buf.Free()
    	}
    	if gs := s.groups; gs != nil {
    		*gs = (*gs)[:0]
    		groupPool.Put(gs)
    	}
    	s.prefix.Free()
    }
    
    func (s *handleState) openGroups() {
    	for _, n := range s.h.groups[s.h.nOpenGroups:] {
    		s.openGroup(n)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    	Run:      run,
    }
    
    // assertableTo checks whether interface v can be asserted into t. It returns
    // nil on success, or the first conflicting method on failure.
    func assertableTo(free *typeparams.Free, v, t types.Type) *types.Func {
    	if t == nil || v == nil {
    		// not assertable to, but there is no missing method
    		return nil
    	}
    	// ensure that v and t are interfaces
    	V, _ := v.Underlying().(*types.Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. internal/disk/stat_linux_32bit.go

    	// https://github.com/minio/minio/issues/8035
    	// XFS can show wrong values at times error out
    	// in such scenarios.
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/runtime/mcentral.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Central free lists.
    //
    // See malloc.go for an overview.
    //
    // The mcentral doesn't actually contain the list of free objects; the mspan does.
    // Each mcentral is two lists of mspans: those with free objects (c->nonempty)
    // and those that are completely allocated (c->empty).
    
    package runtime
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top