Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Boundaries (0.2 sec)

  1. src/html/template/js_test.go

    		{"\u2029", `\u2029`},
    		{"\\", `\\`},
    		{"\\n", `\\n`},
    		{"foo\r\nbar", `foo\r\nbar`},
    		// Preserve attribute boundaries.
    		{`"`, `\u0022`},
    		{`'`, `\u0027`},
    		// Allow embedding in HTML without further escaping.
    		{`&`, `\u0026amp;`},
    		// Prevent breaking out of text node and element boundaries.
    		{"</script>", `\u003c\/script\u003e`},
    		{"<![CDATA[", `\u003c![CDATA[`},
    		{"]]>", `]]\u003e`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/nilcheck.go

    					}
    				}
    			}
    
    			// Next, order values in the current block w.r.t. stores.
    			b.Values = storeOrder(b.Values, sset, storeNumber)
    
    			pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    			pendingLines.clear()
    
    			// Next, process values in the block.
    			for _, v := range b.Values {
    				switch v.Op {
    				case OpIsNonNil:
    					ptr := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    buildDependentComponents.dependsOn(buildDependents);
                }
                // Wire build dependent binaries tasks dependencies
                // Defer dependencies gathering as we need to resolve across project's boundaries
                assembleDependents.dependsOn(new Callable<Iterable<Task>>() {
                    @Override
                    public Iterable<Task> call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/context/context.go

    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  5. src/os/file_plan9.go

    		return 0, io.EOF
    	}
    	return n, e
    }
    
    // write writes len(b) bytes to the File.
    // It returns the number of bytes written and an error, if any.
    // Since Plan 9 preserves message boundaries, never allow
    // a zero-byte write.
    func (f *File) write(b []byte) (n int, err error) {
    	if err := f.writeLock(); err != nil {
    		return 0, err
    	}
    	defer f.writeUnlock()
    	if len(b) == 0 {
    		return 0, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeReal : Pat<(TF_RealOp $arg), (TFL_RealOp $arg)>;
    
    def LegalizeImag : Pat<(TF_ImagOp $arg), (TFL_ImagOp $arg)>;
    
    def LegalizeBucketize : Pat<
      (TF_BucketizeOp $input, F32ArrayAttr:$boundaries),
      (TFL_BucketizeOp $input, $boundaries)>;
    
    def LegalizeRandomUniform : Pat<
      (TF_RandomUniformOp $shape, $seed, $seed2),
      (TFL_RandomUniformOp $shape, (convertIntAttrTo64Bit $seed),
       (convertIntAttrTo64Bit $seed2))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSet.java

       * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} will copy the data only once.
       * This reduces the expense of habitually making defensive copies at API boundaries. However, the
       * precise conditions for skipping the copy operation are undefined.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 7.0 (source-compatible since 2.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

      /** Headers are compressed, then framed.  */
      @Test fun pushPromiseThenContinuation() {
        val expectedPromisedStreamId = 11
        val pushPromise = largeHeaders()
    
        // Decoding the first header will cross frame boundaries.
        val headerBlock = literalHeaders(pushPromise)
    
        // Write the first headers frame.
        writeMedium(frame, Http2.INITIAL_MAX_FRAME_SIZE)
        frame.writeByte(Http2.TYPE_PUSH_PROMISE)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/runtime/metrics.go

    		// and exclusive upper-bound (e.g. 48-byte size class is
    		// [33, 49)). We can achieve this by shifting all bucket
    		// boundaries up by 1.
    		//
    		// Also, a float64 can precisely represent integers with
    		// value up to 2^53 and size classes are relatively small
    		// (nowhere near 2^48 even) so this will give us exact
    		// boundaries.
    		sizeClassBuckets[i] = float64(class_to_size[i] + 1)
    	}
    	sizeClassBuckets = append(sizeClassBuckets, float64Inf())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/cmd/trace/main.go

    func splitTrace(parsed *parsedTrace) ([]traceviewer.Range, error) {
    	// TODO(mknyszek): Split traces by generation by doing a quick first pass over the
    	// trace to identify all the generation boundaries.
    	s, c := traceviewer.SplittingTraceConsumer(100 << 20) // 100 MiB
    	if err := generateTrace(parsed, defaultGenOpts(), c); err != nil {
    		return nil, err
    	}
    	return s.Ranges, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top