Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for imprecise (0.17 sec)

  1. src/runtime/traceback.go

    		// So for GC stack traversal, we can safely ignore SPWRITE for the innermost frame,
    		// but farther up the stack we'd better not find any.
    		// This is somewhat imprecise because we're just guessing that we're in the stack
    		// growth check. It would be better if SPWRITE were encoded in the spdelta
    		// table so we would know for sure that we were still in safe code.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		t.Errorf("round-trip failed: %d => %q => %d, %v", min0, min0.String(), min1, err)
    	}
    
    	for i := 0; i < 100; i++ {
    		// Resolutions finer than milliseconds will result in
    		// imprecise round-trips.
    		d0 := Duration(rand.Int31()) * Millisecond
    		s := d0.String()
    		d1, err := ParseDuration(s)
    		if err != nil || d0 != d1 {
    			t.Errorf("round-trip failed: %d => %q => %d, %v", d0, s, d1, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    			spdelta := int64(pcsp.Value)
    			if !haslr {
    				// Return address has been pushed onto stack.
    				spdelta += int64(d.arch.PtrSize)
    			}
    
    			if haslr && !fi.TopFrame() {
    				// TODO(bryanpkc): This is imprecise. In general, the instruction
    				// that stores the return address to the stack frame is not the
    				// same one that allocates the frame.
    				if pcsp.Value > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

    // Instead we want {S,&,X} to denote the infinite list [S, S&X,
    // S&X&X',S&X&X'&X'', ...] where X, X', X'' are predicates that assert Cond is
    // true on iteration 0, 1, 2 respectively.  This is made more precise in the
    // comment on the AndRecurrence class.
    //
    // The general algorithm that deals with cycles does two topological-order
    // iterations over the graph.  On the first iteration it assigns a symbolic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Location loc = op.getLoc();
        Value input = op.getX();
        TensorType original_tensor_type =
            mlir::cast<TensorType>(op.getX().getType());
    
        // The approximation is not precise enough for float16. Do the computation
        // in float32 for that case.
        TensorType tensor_type = original_tensor_type;
        FloatType float_type = mlir::cast<FloatType>(tensor_type.getElementType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		// Panics are always stack allocated.
    		state.putPtr(uintptr(unsafe.Pointer(gp._panic)), false)
    	}
    
    	// Find and scan all reachable stack objects.
    	//
    	// The state's pointer queue prioritizes precise pointers over
    	// conservative pointers so that we'll prefer scanning stack
    	// objects precisely.
    	state.buildIndex()
    	for {
    		p, conservative := state.getPtr()
    		if p == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// Incoming requests are matched against the host before the
    	// IngressRuleValue. If the host is unspecified, the Ingress routes all
    	// traffic based on the specified IngressRuleValue.
    	//
    	// Host can be "precise" which is a domain name without the terminating dot of
    	// a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
    	// prefixed with a single wildcard label (e.g. "*.foo.com").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * where ordering of the "extendsFrom" clauses trigger different resolution results.
         *
         * There's another reason for not allowing inheritance: it allows more precise selection, while still
         * allowing the build author/plugin writer to decide what attributes should be copied to child configurations.
         *
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. src/time/format.go

    	return Date(year, Month(month), day, hour, min, sec, nsec, defaultLocation), nil
    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// NOTE(tallclair): This does not correctly interleave stdout & stderr, but should be sufficient
    	// for logging purposes. A combined output option will need to be added to the ExecSyncRequest
    	// if more precise output ordering is ever required.
    	return append(stdout, stderr...), err
    }
    
    // removeContainer removes the container and the container logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top