Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for deltas (0.42 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    		q.Pos = p.Pos
    		c.blitrl = q
    	}
    
    	// The line number for constant pool entries doesn't really matter.
    	// We set it to the line number of the preceding instruction so that
    	// there are no deltas to encode in the pc-line tables.
    	for q := c.blitrl; q != nil; q = q.Link {
    		q.Pos = p.Pos
    	}
    
    	c.elitrl.Link = p.Link
    	p.Link = c.blitrl
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
      return std::ceil(std::abs(diff / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        Type element_type = type.getElementType();
        Attribute start, delta;
        if (mlir::isa<FloatType>(element_type)) {
          start = rewriter.getFloatAttr(element_type, 0.0);
          delta = rewriter.getFloatAttr(element_type, 1.0);
        } else if (mlir::isa<IntegerType>(element_type)) {
          start = rewriter.getIntegerAttr(element_type, 0);
          delta = rewriter.getIntegerAttr(element_type, 1);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

      $retainKeys:
        - name
        - value
      value: bar
    `),
    			Result: []byte(`
    retainKeysMap:
      name: foo
      value: bar
    `),
    		},
    	},
    	{
    		Description: "retainKeys map deletes a field",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    retainKeysMap:
      name: foo
      value: bar
    `),
    			Current: []byte(`
    retainKeysMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    		creates, deletes := manager.GetCounts(name)
    		switch i {
    		case 2:
    			if creates != 0 || deletes != 0 {
    				t.Errorf("expected 0 creation and 0 deletion of %q, got %d, %d", name, creates, deletes)
    			}
    		default:
    			if creates != 0 || deletes != 1 {
    				t.Errorf("expected 0 creation and one deletion of %q, got %d, %d", name, creates, deletes)
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    				proxy.PrevSidecarScope.SetDestinationRulesForTesting(tc.prevConfigs)
    			}
    			clusters, removed, delta := cg.DeltaClusters(proxy, tc.configUpdated,
    				&model.WatchedResource{ResourceNames: tc.watchedResourceNames})
    			if delta != tc.usedDelta {
    				t.Errorf("un expected delta, want %v got %v", tc.usedDelta, delta)
    			}
    			assert.Equal(t, removed, tc.removedClusters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    			throw("findrunnable: netpoll with spinning")
    		}
    		delay := int64(-1)
    		if pollUntil != 0 {
    			if now == 0 {
    				now = nanotime()
    			}
    			delay = pollUntil - now
    			if delay < 0 {
    				delay = 0
    			}
    		}
    		if faketime != 0 {
    			// When using fake time, just poll.
    			delay = 0
    		}
    		list, delta := netpoll(delay) // block until new work is available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        sink.close()
      }
    
      /**
       * @param delta the offset from the current date to use. Negative values yield dates in the past;
       * positive values yield dates in the future.
       */
      private fun formatDate(
        delta: Long,
        timeUnit: TimeUnit,
      ): String {
        return formatDate(Date(System.currentTimeMillis() + timeUnit.toMillis(delta)))
      }
    
      private fun formatDate(date: Date): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		// whether to replicate deletes as the target could be temporarily down
    		tgtDsc := newReplicateTargetDecision(tgtArn, false, false)
    		if tgt != nil {
    			tgtDsc = newReplicateTargetDecision(tgtArn, replicate, tgt.replicateSync)
    		}
    		dsc.Set(tgtDsc)
    	}
    	return dsc
    }
    
    // replicate deletes to the designated replication target if replication configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                 ? ((std::abs(limit - start) + std::abs(delta) - 1) /
                    std::abs(delta))
                 : std::ceil(std::abs((limit - start) / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top