Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 469 for ESCAPE (0.1 sec)

  1. android/guava/src/com/google/common/html/HtmlEscapers.java

     * the License.
     */
    
    package com.google.common.html;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in HTML attribute values and
     * most elements' text contents. When possible, avoid manual escaping by using templating
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/html/HtmlEscapers.java

     * the License.
     */
    
    package com.google.common.html;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.Escaper;
    import com.google.common.escape.Escapers;
    
    /**
     * {@code Escaper} instances suitable for strings to be included in HTML attribute values and
     * most elements' text contents. When possible, avoid manual escaping by using templating
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.escape;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ExpandDetails.java

         * files ({@code \n}, {@code \t}, {@code \\}, etc) are converted to the symbols that they represent, so, for example {@code \n} becomes newline. If set to {@code true} then escape sequences are
         * left as is.
         * <p>
         * Default value is {@code false}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:00:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue12588.go

    // errorcheck -0 -m -l
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests escape analysis for range of arrays.
    // Compiles but need not run.  Inlining is disabled.
    
    package main
    
    type A struct {
    	b [3]uint64
    }
    
    type B struct {
    	b [3]*uint64
    }
    
    func f(a A) int {
    	for i, x := range &a.b {
    		if x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. guava-gwt/src/com/google/common/html/Html.gwt.xml

        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    <inherits name="com.google.common.escape.Escape" />
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. guava-gwt/src/com/google/common/xml/Xml.gwt.xml

    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    <inherits name="com.google.common.base.Base" />
    <inherits name="com.google.common.escape.Escape" />
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. test/escape4.go

    // Test, using compiler diagnostic flags, that the escape analysis is working.
    // Compiles but does not run.  Inlining is enabled.
    
    package foo
    
    var p *int
    
    func alloc(x int) *int { // ERROR "can inline alloc" "moved to heap: x"
    	return &x
    }
    
    var f func()
    
    func f1() {
    	p = alloc(2) // ERROR "inlining call to alloc" "moved to heap: x"
    
    	// Escape analysis used to miss inlined code in closures.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. test/linkname.dir/linkname1.go

    package x
    
    func indexByte(xs []byte, b byte) int { // ERROR "xs does not escape" "can inline indexByte"
    	for i, x := range xs {
    		if x == b {
    			return i
    		}
    	}
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 14:25:03 UTC 2021
    - 174 bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/net/Net.gwt.xml

    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    <inherits name="com.google.common.base.Base" />
    <inherits name="com.google.common.collect.Collect" />
    <inherits name="com.google.common.escape.Escape" />
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    <inherits name="com.google.thirdparty.publicsuffix.PublicSuffixPatterns" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top