Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for lamp (1.2 sec)

  1. doc/go1.17_spec.html

    </p>
    <pre class="grammar">
    +    &amp;     +=    &amp;=     &amp;&amp;    ==    !=    (    )
    -    |     -=    |=     ||    &lt;     &lt;=    [    ]
    *    ^     *=    ^=     &lt;-    &gt;     &gt;=    {    }
    /    &lt;&lt;    /=    &lt;&lt;=    ++    =     :=    ,    ;
    %    &gt;&gt;    %=    &gt;&gt;=    --    !     ...   .    :
         &amp;^          &amp;^=
    </pre>
    
    <h3 id="Integer_literals">Integer literals</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    //go:generate go run entity2go.go -o entity.go
    
    package markdown
    
    // htmlEntity maps known HTML entity sequences to their meanings.
    var htmlEntity = map[string]string{
    	"&AElig;":                           "\u00c6",
    	"&AMP;":                             "\u0026",
    	"&Aacute;":                          "\u00c1",
    	"&Abreve;":                          "\u0102",
    	"&Acirc;":                           "\u00c2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (start_indices_element_type.isInteger(32)) {
          signed_start_indices_element_type = rewriter.getI32Type();
        } else {
          signed_start_indices_element_type = rewriter.getI64Type();
        }
    
        // Clamp indices to [0, input_size - output_size]
        llvm::SmallVector<Value, 4> start_indices_vector;
        start_indices_vector.reserve(op.getStartIndices().size());
        Value clamp_min = rewriter.create<TF::ConstOp>(
    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. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"city_sunset":                          "\U0001f306",
    	"cityscape":                            "\U0001f3d9\ufe0f",
    	"cl":                                   "\U0001f191",
    	"clamp":                                "\U0001f5dc\ufe0f",
    	"clap":                                 "\U0001f44f",
    	"clapper":                              "\U0001f3ac",
    	"classical_building":                   "\U0001f3db\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Clamps the given `val`: returns `low` if `val` is less than `low`; returns
    // `high` if `high` is less than `val`; otherwise returns `val`.
    template <class T>
    constexpr const T &Clamp(const T &val, const T &low, const T &high) {
      assert(!(high < low));
      return (val < low) ? low : (high < val) ? high : val;
    }
    
    // Checks if the `index` bit of `val` is set.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

          <fields>
            <field>
              <name>includes</name>
              <version>3.0.0+</version>
              <description>
                A list of patterns to include, e.g. {@code **&amp;#47;*.xml}.
              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	pollIntervalBase := time.Millisecond
    	nextPollInterval := func() time.Duration {
    		// Add 10% jitter.
    		interval := pollIntervalBase + time.Duration(rand.Intn(int(pollIntervalBase/10)))
    		// Double and clamp for next time.
    		pollIntervalBase *= 2
    		if pollIntervalBase > shutdownPollIntervalMax {
    			pollIntervalBase = shutdownPollIntervalMax
    		}
    		return interval
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          concatenated = rewriter.create<TFL::ConcatenationOp>(
              op->getLoc(), begin_type, start_indices, /*axis=*/0,
              /*fused_activation_function=*/rewriter.getStringAttr("NONE"));
        }
    
        // Clamp with lower limit.
        auto lower_limit_attr = DenseIntElementsAttr::get(
            single_element_type, {static_cast<int64_t>(0)});
        auto lower_limit_cst =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		// dependency, and at the moment we don't try to instrument it
    		// for coverage. There isn't any technical reason why
    		// *_test.go files couldn't be instrumented, but it probably
    		// doesn't make much sense to lump together coverage metrics
    		// (ex: percent stmts covered) of *_test.go files with
    		// non-test Go code.
    		if len(p.GoFiles)+len(p.CgoFiles) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top