Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 274 for Cast (0.09 sec)

  1. src/runtime/mheap.go

    		if gcBitsArenas.free == nil {
    			gcBitsArenas.free = gcBitsArenas.previous
    		} else {
    			// Find end of previous arenas.
    			last := gcBitsArenas.previous
    			for last = gcBitsArenas.previous; last.next != nil; last = last.next {
    			}
    			last.next = gcBitsArenas.free
    			gcBitsArenas.free = gcBitsArenas.previous
    		}
    	}
    	gcBitsArenas.previous = gcBitsArenas.current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			}
    
    			last := locs.slots[slot]
    			if last.absent() {
    				state.f.Fatalf("at %v: slot %v in register %v with no location entry", v, state.slots[slot], &state.registers[reg])
    				continue
    			}
    			regs := last.Registers &^ (1 << reg)
    			setSlot(slot, VarLoc{regs, last.StackOffset})
    		}
    
    		locs.registers[reg] = locs.registers[reg][:0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/time/time.go

    	// Cut off 100-year cycles.
    	// The last cycle has one extra leap year, so on the last day
    	// of that year, day / daysPer100Years will be 4 instead of 3.
    	// Cut it back down to 3 by subtracting n>>2.
    	n = d / daysPer100Years
    	n -= n >> 2
    	y += 100 * n
    	d -= daysPer100Years * n
    
    	// Cut off 4-year cycles.
    	// The last cycle has a missing leap year, which does not
    	// affect the computation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	me, ok := c.Err.(*module.ModuleError)
    	if ok && len(c.Path) > 0 {
    		last := c.Path[len(c.Path)-1]
    		if me.Path == last.Path && me.Version == last.Version {
    			return me.Err
    		}
    	}
    	return c.Err
    }
    
    // Summary returns a string that describes only the first and last modules in
    // the conflict path.
    func (c Conflict) Summary() string {
    	if len(c.Path) == 0 {
    		return "(internal error: invalid Conflict struct)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .col-first, .col-first {
        font-size:0.93em;
    }
    .col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
        font-size:0.93em;
    }
    .col-first, .col-second, .col-constructor-name {
        vertical-align:top;
        overflow: auto;
    }
    .col-last {
        white-space:normal;
    }
    .col-first a:link, .col-first a:visited,
    .col-second a:link, .col-second a:visited,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	name       string // full name including dir
    	header     []byte
    	fset       *token.FileSet
    	parsed     *ast.File
    	parseErr   error
    	imports    []fileImport
    	embeds     []fileEmbed
    	directives []Directive
    }
    
    type fileImport struct {
    	path string
    	pos  token.Pos
    	doc  *ast.CommentGroup
    }
    
    type fileEmbed struct {
    	pattern string
    	pos     token.Position
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // preserving the most recent terminated init container.
    func (m *kubeGenericRuntimeManager) pruneInitContainersBeforeStart(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) {
    	// only the last execution of each init container should be preserved, and only preserve it if it is in the
    	// list of init containers to keep.
    	initContainerNames := sets.New[string]()
    	for _, container := range pod.Spec.InitContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // spans. heapGoal / lastHeapGoal defines the ratio between the current heap goal
    // and the last heap goal, which tells us by how much the heap is growing and
    // shrinking. We estimate what the heap will grow to in terms of pages by taking
    // this ratio and multiplying it by heapInUse at the end of the last GC, which
    // allows us to account for this additional fragmentation. Note that this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    		dt := w.dt
    		if t.lastHeading != dt.heading {
    			t.lastHeading = dt.heading
    			t.out(dt.heading)
    		}
    		if dt != last {
    			// Assumes all the entries for a single dt are in one worklist.
    			last = w.dt
    			if vflag > 0 {
    				fmt.Printf("# go tool dist test -run=^%s$\n", dt.name)
    			}
    		}
    		if vflag > 1 {
    			errprintf("%s\n", strings.Join(w.cmd.Args, " "))
    		}
    		ended++
    		<-w.end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    	margin-top: 0;
    }
    
    .sidebarblock> :last-child {
    	margin-bottom: 0;
    }
    
    .sidebarblock>.content>.title {
    	color: #7a2518;
    	margin-top: 0;
    	text-align: center;
    }
    
    .exampleblock>.content> :last-child> :last-child,
    .exampleblock>.content .olist>ol>li:last-child> :last-child,
    .exampleblock>.content .ulist>ul>li:last-child> :last-child,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top