Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for MARK (0.18 sec)

  1. src/cmd/link/internal/ld/lib.go

    	order := make([]*sym.Library, 0, len(libs)) // hold the result
    	mark := make(map[*sym.Library]markKind, len(libs))
    	for _, lib := range libs {
    		dfs(lib, mark, &order)
    	}
    	return order
    }
    
    func dfs(lib *sym.Library, mark map[*sym.Library]markKind, order *[]*sym.Library) {
    	if mark[lib] == visited {
    		return
    	}
    	if mark[lib] == visiting {
    		panic("found import cycle while visiting " + lib.Pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    				p.searchAddr = b
    			}
    			p.chunkOf(ci).free(base, npages)
    			p.update(addr, uintptr(npages), true, false)
    
    			// Mark the range as scavenged.
    			p.chunkOf(ci).scavenged.setRange(base, npages)
    			unlock(p.mheapLock)
    
    			return uintptr(npages) * pageSize
    		}
    	}
    	// Mark this chunk as having no free pages.
    	p.scav.index.setEmpty(ci)
    	unlock(p.mheapLock)
    
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int64
    	if len(tmp) >= 2*textMax {
    		freq, bucket = tmp[:textMax], tmp[textMax:2*textMax]
    		freq[0] = -1 // mark as uninitialized
    	} else {
    		freq, bucket = nil, tmp[:textMax]
    	}
    
    	// The SAIS algorithm.
    	// Each of these calls makes one scan through sa.
    	// See the individual functions for documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	if err != nil {
    		// No recycler found. Emit an event and mark the volume Failed.
    		if _, err = ctrl.updateVolumePhaseWithEvent(ctx, volume, v1.VolumeFailed, v1.EventTypeWarning, events.VolumeFailedRecycle, "No recycler plugin found for the volume!"); err != nil {
    			logger.V(4).Info("RecycleVolumeOperation: failed to mark volume as failed", "volumeName", volume.Name, "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	fakePodState.removed = map[kubetypes.UID]struct{}{pod.UID: {}}
    
    	// Add the volume to ASW by reconciling.
    	fakeASW := dswp.actualStateOfWorld
    	reconcileASW(fakeASW, dswp.desiredStateOfWorld, t)
    
    	// Mark the volume as uncertain
    	opts := operationexecutor.MarkVolumeOpts{
    		PodName:             util.GetUniquePodName(pod),
    		PodUID:              pod.UID,
    		VolumeName:          expectedVolumeName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    	return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) - 1))
    }
    
    // markBits provides access to the mark bit for an object in the heap.
    // bytep points to the byte holding the mark bit.
    // mask is a byte with a single bit set that can be &ed with *bytep
    // to see if the bit has been set.
    // *m.byte&m.mask != 0 indicates the mark bit is set.
    // index can be used along with span information to generate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // with yield op and an empty block.
    mlir::TF::IfRegionOp CloneEmptyIfWithPredicate(mlir::TF::IfRegionOp if_region,
                                                   OpBuilder& builder) {
      // Mark op as stateful due to side-effecting communication ops added later.
      auto host_side_if = builder.create<mlir::TF::IfRegionOp>(
          if_region.getLoc(), llvm::SmallVector<Type, 4>{}, if_region.getCond(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if addErr != nil {
    		t.Fatalf("AddVolumeNode failed. Expected: <no error> Actual: <%v>", addErr)
    	}
    
    	// Act: do not mark -- test default value
    
    	// Assert
    	attachedVolumes := asw.GetAttachedVolumes()
    	if len(attachedVolumes) != 1 {
    		t.Fatalf("len(attachedVolumes) Expected: <1> Actual: <%v>", len(attachedVolumes))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    		ctxt.Out.Write8(MIPS_FPABI_SOFT) // fpAbi
    	} else {
    		// Go cannot make sure non odd-number-fpr is used (ie, in load a double from memory).
    		// So, we mark the object is MIPS I style paired float/double register scheme,
    		// aka MIPS_FPABI_ANY. If we mark the object as FPXX, the kernel may use FR=1 mode,
    		// then we meet some problem.
    		// Note: MIPS_FPABI_ANY is bad naming: in fact it is MIPS I style FPR usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    			}
    		}
    
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	// mark loop entry instructions for padding
    	// loop entrances are defined as targets of backward branches
    	for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		if q := p.To.Target(); q != nil && q.Pc < p.Pc {
    			q.Mark |= branchLoopHead
    		}
    	}
    
    	// Run these passes until convergence.
    	for {
    		rescan := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top