Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Rolling (0.27 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      The rabbit-hole went straight on like a tunnel for some way,
    and then dipped suddenly down, so suddenly that Alice had not a
    moment to think about stopping herself before she found herself
    falling down a very deep well.
    
      Either the well was very deep, or she fell very slowly, for she
    had plenty of time as she went down to look about her and to
    wonder what was going to happen next.  First, she tried to look
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      // CHECK: return %[[IDENTITY]] : tensor<?xf32>
        %ret = "tf.Identity"(%arg0) : (tensor<?xf32>) -> tensor<*xf32>
        func.return %ret : tensor<*xf32>
      }
    
    
      // Tests the case where an inference opportunity relies on folding.
    
      // CHECK-LABEL: func @simple_folding
      func.func @simple_folding(%arg0: tensor<1x1x1x1xi32>, %arg1: tensor<1x1x1x1xf32>) -> tensor<?x?x?x?xf32> {
        // CHECK: %[[SHAPE:.*]] = "tf.Shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (!operand_ty || !operand_ty.hasStaticShape()) {
          // TensorFlow constant ops may have non-static shape because the shape is
          // not propagated during constant folding. If the defining op for this
          // operand is a constant op, use the constant op's attribute to get the
          // actual shape.
          DenseIntElementsAttr attr;
          if (!matchPattern(val, m_Constant(&attr))) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

            Segment<K, V> segment, K key, int hash, @CheckForNull ReferenceEntry<K, V> next);
    
        /**
         * Copies an entry, assigning it a new {@code next} entry.
         *
         * @param original the entry to copy. But avoid calling {@code getKey} on it: Instead, use the
         *     {@code key} parameter. That way, we prevent the key from being garbage collected in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      GetQuantizationForQuantStatsOpOutput(mlir::quantfork::StatisticsOp stats_op);
    
      // Build a subgraph with a given name out of the region either corresponding
      // to a function's body or while op. Modifies *region by calling
      // ExtractControlEdges.
      std::optional<BufferOffset<tflite::SubGraph>> BuildSubGraph(
          const std::string& name, Region* region, int index);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			}
    
    			// Remove duplicate main symbol with runtime/cgo on AIX.
    			// With runtime/cgo, two main are available:
    			// One is generated by cgo tool with {return 0;}.
    			// The other one is the main calling runtime.rt0_go
    			// in runtime/cgo.
    			// The second can't be used by cgo programs because
    			// runtime.rt0_go is unknown to them.
    			// Therefore, we let ld remove this main version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

            Segment<K, V> segment, K key, int hash, @CheckForNull ReferenceEntry<K, V> next);
    
        /**
         * Copies an entry, assigning it a new {@code next} entry.
         *
         * @param original the entry to copy. But avoid calling {@code getKey} on it: Instead, use the
         *     {@code key} parameter. That way, we prevent the key from being garbage collected in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	}
    
    	got := int(testing.AllocsPerRun(10, func() {
    		iter := v.MapRange()
    		for iter.Next() {
    			k.SetIterKey(iter)
    			e.SetIterValue(iter)
    		}
    	}))
    	// Calling MapRange should not allocate even though it returns a *MapIter.
    	// The function is inlineable, so if the local usage does not escape
    	// the *MapIter, it can remain stack allocated.
    	want := 0
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	for i := 0; i < numClients; i++ {
    		go func() {
    			for i := 0; i < reqsPerClient; i++ {
    				res, err := c.Get(ts.URL)
    				if err == nil {
    					// We expect errors since the server is
    					// hanging up on us after telling us to
    					// send more requests, so we don't
    					// actually care what the error is.
    					// But we want to close the body in cases
    					// where we won the race.
    					res.Body.Close()
    				}
    				wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err := q.Add(logger, gatedPod); err != nil {
    		t.Error("Error calling Add")
    	}
    
    	if !q.unschedulablePods.get(gatedPod).Gated {
    		t.Error("expected pod to be gated")
    	}
    
    	ungatedPod := gatedPod.DeepCopy()
    	ungatedPod.Spec.SchedulingGates = nil
    	if err := q.Update(logger, gatedPod, ungatedPod); err != nil {
    		t.Error("Error calling Update")
    	}
    
    	ungatedPodInfo, _ := q.Pop(logger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top