Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for notsan (1.7 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "//tensorflow/lite/tools/optimize:testdata/weight_shared_between_convs.bin",
        ],
        tags = [
            # TODO(b/327796566): re-enable after the bug is fixed
            "manual",
            "noasan",
            "noguitar",
            "notap",
            "tflite_not_portable_android",
            "tflite_not_portable_ios",
        ],
        deps = [
            ":quantize_weights",
            "//tensorflow/compiler/mlir/lite/schema:schema_fbs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. test/func5.go

    func addc(x, y int, c chan int) {
    	c <- x+y
    }
    
    func fnc() func(int, int, chan int) {
    	return fc
    }
    
    func three(x int) {
    	if x != 3 {
    		println("wrong val", x)
    		panic("fail")
    	}
    }
    
    var notmain func()
    
    func emptyresults() {}
    func noresults()    {}
    
    var nothing func()
    
    func main() {
    	three(call(add, 1, 2))
    	three(call1(add, 1, 2))
    	f = add
    	three(call(f, 1, 2))
    	three(call1(f, 1, 2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    		span = c.allocLarge(size, noscan)
    		span.freeindex = 1
    		span.allocCount = 1
    		size = span.elemsize
    		x = unsafe.Pointer(span.base())
    		if needzero && span.needzero != 0 {
    			delayedZeroing = true
    		}
    		if !noscan {
    			// Tell the GC not to look at this yet.
    			span.largeType = nil
    			header = &span.largeType
    		}
    	}
    	if !noscan && !delayedZeroing {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

     * of the execution plan instead, which seems much nicer.
     * </p>
     * <p>
     * Additionally this class contains a clone of the MavenSession, which is *only* needed
     * because it has as notion of a "current" project.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class ProjectSegment {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/runtime/race_ppc64le.s

    	// void __tsan_write_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_write_range(SB), R8
    	BR	racecalladdr<>(SB)
    
    // Call a __tsan function from Go code.
    // R8 = tsan function address
    // R3 = *ThreadState a.k.a. g_racectx from g
    // R4 = addr passed to __tsan function
    //
    // Otherwise, setup goroutine context and invoke racecall. Other arguments already set.
    TEXT	racecalladdr<>(SB), NOSPLIT, $0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // Visit the edges after sorting the components in consumer-first order
            while (!queue.isEmpty()) {
                ComponentState component = queue.peekFirst();
                if (component.getVisitState() == VisitState.NotSeen) {
                    component.setVisitState(VisitState.Visiting);
                    int pos = 0;
                    for (NodeState node : component.getNodes()) {
                        if (!node.isSelected()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * the model builder operate in project mode. This mode is meant for effective models that are employed during the
         * build process of a local project. Hence the effective model will support the notion of a project directory. To
         * build the model for a POM from the repository, use {@link #setModelSource(ModelSource)} in combination with a
         * {@link FileModelSource} instead.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // GpuOpFusionPass is a pass performing fusion specific to GPU targets.
    // This is an ad-hoc pass for now, but should be integrated with some notion
    // of "target" in the MLIR pipeline in the future.
    class GpuOpFusionPass : public impl::TensorflowGPUFusionBase<GpuOpFusionPass> {
     public:
      void runOnOperation() final;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    	resources := runtimeapi.WindowsContainerResources{}
    
    	memLimit := memoryLimit.Value()
    
    	if !cpuLimit.IsZero() {
    		// Since Kubernetes doesn't have any notion of weight in the Pod/Container API, only limits/reserves, then applying CpuMaximum only
    		// will better follow the intent of the user. At one point CpuWeights were set, but this prevented limits from having any effect.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top