Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Scans (0.04 sec)

  1. src/debug/gosym/pclntab.go

    	p := t.pctab[off:]
    
    	val := int32(-1)
    	pc := entry
    	for t.step(&p, &pc, &val, pc == entry) {
    		if targetpc < pc {
    			return val
    		}
    	}
    	return -1
    }
    
    // findFileLine scans one function in the binary looking for a
    // program counter in the given file on the given line.
    // It does so by running the pc-value tables mapping program counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cgroup_manager_linux.go

    	if err := manager.Set(libcontainerCgroupConfig.Resources); err != nil {
    		utilruntime.HandleError(fmt.Errorf("cgroup manager.Set failed: %w", err))
    	}
    
    	return nil
    }
    
    // Scans through all subsystems to find pids associated with specified cgroup.
    func (m *cgroupManagerImpl) Pids(name CgroupName) []int {
    	// we need the driver specific name
    	cgroupFsName := m.Name(name)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. src/runtime/chan_test.go

    	const n = 10
    	send := func(c chan<- int, done chan struct{}) {
    		for i := 0; i < n; i++ {
    			c <- i
    			// Use lots of stack briefly so that
    			// the GC is going to want to shrink us
    			// when it scans us. Make sure not to
    			// do any function calls otherwise
    			// in order to avoid us shrinking ourselves
    			// when we're preempted.
    			stackGrowthRecursive(20)
    		}
    		done <- struct{}{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. cmd/metacache-entries.go

    	// name is the full name of the object including prefixes
    	name string
    	// Metadata. If none is present it is not an object but only a prefix.
    	// Entries without metadata will only be present in non-recursive scans.
    	metadata []byte
    
    	// cached contains the metadata if decoded.
    	cached *xlMetaV2
    
    	// Indicates the entry can be reused and only one reference to metadata is expected.
    	reusable bool
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			// volume spec is not needed to detach a volume. If the volume is used by a pod, it
    			// its spec can be: this would happen during in the populateDesiredStateOfWorld which
    			// scans the pods and updates their volumes in the ActualStateOfWorld too.
    			err = adc.actualStateOfWorld.MarkVolumeAsAttached(logger, uniqueName, nil /* VolumeSpec */, nodeName, attachedVolume.DevicePath)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/gradle_optimizations.html">9. Incremental Builds + Caching</a></li>
                            <li><a href="../userguide/build_scans.html">10. Build Scans</a></li>
    
                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" aria-expanded="false">Tutorial</a>
                        <ul id="running-tutorial">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/debug/dwarf/line.go

    // If pc is not covered by any entry in this line table, SeekPC
    // returns [ErrUnknownPC]. In this case, *entry and the final seek
    // position are unspecified.
    //
    // Note that DWARF line tables only permit sequential, forward scans.
    // Hence, in the worst case, this takes time linear in the size of the
    // line table. If the caller wishes to do repeated fast PC lookups, it
    // should build an appropriate index of the line table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. src/image/jpeg/reader.go

    	adobeTransform      uint8
    	eobRun              uint16 // End-of-Band run, specified in section G.1.2.2.
    
    	comp       [maxComponents]component
    	progCoeffs [maxComponents][]block // Saved state between progressive-mode scans.
    	huff       [maxTc + 1][maxTh + 1]huffman
    	quant      [maxTq + 1]block // Quantization tables, in zig-zag order.
    	tmp        [2 * blockSize]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    	if s.ch == '=' {
    		s.next()
    		return tok1
    	}
    	if s.ch == ch2 {
    		s.next()
    		if s.ch == '=' {
    			s.next()
    			return tok3
    		}
    		return tok2
    	}
    	return tok0
    }
    
    // Scan scans the next token and returns the token position, the token,
    // and its literal string if applicable. The source end is indicated by
    // [token.EOF].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	case "PCDATA":
    		p.asmPCData(operands)
    	case "PCALIGN":
    		p.asmPCAlign(operands)
    	case "TEXT":
    		p.asmText(operands)
    	default:
    		return false
    	}
    	return true
    }
    
    // symDefRef scans a line for potential text symbol definitions and
    // references and writes symabis information to w.
    //
    // The symabis format is documented at
    // cmd/compile/internal/ssagen.ReadSymABIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top