Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for putrefy (0.14 sec)

  1. src/runtime/mbitmap.go

    //
    // The typ argument is the type of the space at src and dst (and the
    // element type if src and dst refer to arrays) and it is optional.
    // If typ is nil, the barrier will still behave as expected and typ
    // is used purely as an optimization. However, it must be used with
    // care.
    //
    // If typ is not nil, then src and dst must point to one or more values
    // of type typ. The caller must ensure that the ranges [src, src+size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // 1) Any resource loads after a store to that same resource is done
    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
    	work.baseEnd = work.baseStacks + uint32(work.nStackRoots)
    }
    
    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    # the second iteration of a parameterized test
    gradle test --tests '*ParameterizedTest.*[2]'
    ```
    
    Note that the wildcard '*' has no special understanding of the '.' package separator. It's purely text based. So `--tests *.SomeTestClass` will match any package, regardless of its 'depth'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    				return rs, errGoModDirty
    			}
    		}
    
    		// No explicit roots are missing and all roots are already at the versions
    		// we want to keep. Any other changes we would make are purely cosmetic,
    		// such as pruning redundant indirect dependencies. Per issue #34822, we
    		// ignore cosmetic changes when we cannot update the go.mod file.
    		return rs, nil
    	}
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    	// deprecations for indirect dependencies if they're also direct dependencies
    	// of the main module. Deprecations of purely indirect dependencies are
    	// not actionable.
    	deprecations := make([]modMessage, 0, len(relevantMods))
    	for m, flags := range relevantMods {
    		if flags&(resolved|named) != 0 || flags&(hasPkg|direct) == hasPkg|direct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      #
      # daschott noted on Slack: "L2bridge networks require an external vSwitch.
      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    			value := *override
    			opts.KillPodOptions.PodTerminationGracePeriodSecondsOverride = &value
    		}
    	}
    	// StartTime is not copied - that is purely for tracking latency of config propagation
    	// from kubelet to pod worker.
    }
    
    // podWorkers keeps track of operations on pods and ensures each pod is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    }
    
    // GetFuncDwarfAuxSyms collects and returns the auxiliary DWARF
    // symbols associated with a given function symbol.  Prior to the
    // introduction of the loader, this was done purely using name
    // lookups, e.f. for function with name XYZ we would then look up
    // go.info.XYZ, etc.
    func (l *Loader) GetFuncDwarfAuxSyms(fnSymIdx Sym) (auxDwarfInfo, auxDwarfLoc, auxDwarfRanges, auxDwarfLines Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    	// in Okasaki's purely functional queue but without the
    	// overhead of reversing the list when swapping stages.
    	head    []*wantConn
    	headPos int
    	tail    []*wantConn
    }
    
    // len returns the number of items in the queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top