Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for Boundaries (0.32 sec)

  1. src/runtime/export_test.go

    func (s *ScavengeIndex) AllocRange(base, limit uintptr) {
    	sc, ec := chunkIndex(base), chunkIndex(limit-1)
    	si, ei := chunkPageIndex(base), chunkPageIndex(limit-1)
    
    	if sc == ec {
    		// The range doesn't cross any chunk boundaries.
    		s.i.alloc(sc, ei+1-si)
    	} else {
    		// The range crosses at least one chunk boundary.
    		s.i.alloc(sc, pallocChunkPages-si)
    		for c := sc + 1; c < ec; c++ {
    			s.i.alloc(c, pallocChunkPages)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Ascii.java

       * consider the following:
       *
       * <ul>
       *   <li>it may split surrogate pairs
       *   <li>it may split characters and combining characters
       *   <li>it does not consider word boundaries
       *   <li>if truncating for display to users, there are other considerations that must be taken
       *       into account
       *   <li>the appropriate truncation indicator may be locale-dependent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    	titleSpan spanFunc
    
    	rewrite func(*context)
    }
    
    // Transform implements the standard Unicode title case algorithm as defined in
    // Chapter 3 of The Unicode Standard:
    // toTitlecase(X): Find the word boundaries in X according to Unicode Standard
    // Annex #29, "Unicode Text Segmentation." For each word boundary, find the
    // first cased character F following the word boundary. If F exists, map F to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    With cacheable tasks incorrect results are stored permanently, and can come back to haunt you later; re-running with `clean` won't help in this situation either. When using a shared cache, these problems even cross machine boundaries. In the example above, Gradle might end up loading a result for your task that was produced with a different configuration. Resolving these problems with the build therefore becomes even more important when task output caching is enabled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Range.java

    import java.util.Comparator;
    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import java.util.SortedSet;
    import javax.annotation.CheckForNull;
    
    /**
     * A range (or "interval") defines the <i>boundaries</i> around a contiguous span of values of some
     * {@code Comparable} type; for example, "integers from 1 to 100 inclusive." Note that it is not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Range.java

    import java.util.Comparator;
    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import java.util.SortedSet;
    import javax.annotation.CheckForNull;
    
    /**
     * A range (or "interval") defines the <i>boundaries</i> around a contiguous span of values of some
     * {@code Comparable} type; for example, "integers from 1 to 100 inclusive." Note that it is not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/internal/trace/gc.go

    	// box-filtered utilization function, which we call the
    	// "windowed mutator utilization function". The resulting
    	// function is continuous and piecewise linear (unless
    	// window==0, which we handle elsewhere), where the boundaries
    	// between segments occur when either edge of the window
    	// encounters a change in the instantaneous mutator
    	// utilization function. Hence, the minimum of this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/html/template/escape.go

    		}
    	}
    	if i == len(s) {
    		// Remain inside the attribute.
    		// Decode the value so non-HTML rules can easily handle
    		//     <button onclick="alert(&quot;Hi!&quot;)">
    		// without having to entity decode token boundaries.
    		for u := []byte(html.UnescapeString(string(s))); len(u) != 0; {
    			c1, i1 := transitionFunc[c.state](c, u)
    			c, u = c1, u[i1:]
    		}
    		return c, len(s)
    	}
    
    	element := c.element
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  9. src/time/format_test.go

    	"(2006)(002)(01) (15):(04):(05)",
    	"(2006)(002)(04) (15):(04):(05)",
    }
    
    func TestNextStdChunk(t *testing.T) {
    	// Most bugs in Parse or Format boil down to problems with
    	// the exact detection of format chunk boundaries in the
    	// helper function nextStdChunk (here called as NextStdChunk).
    	// This test checks nextStdChunk's behavior directly,
    	// instead of needing to test it only indirectly through Parse/Format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        func.return %1 : tensor<4x7xcomplex<f64>>
      }
    
      // CHECK-LABEL: bucketize
      func.func @bucketize(%arg0: tensor<2x5xf32>) -> tensor<2x5xi32> {
        // CHECK-NOT: tf.Bucketize
        %0 = "tf.Bucketize"(%arg0) {boundaries = [0.000000e+00 : f32, 3.000000e+00 : f32, 8.000000e+00 : f32, 1.100000e+01 : f32]} : (tensor<2x5xf32>) -> tensor<2x5xi32>
        func.return %0 : tensor<2x5xi32>
      }
    
      // CHECK-LABEL: arg_min
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
Back to top