Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Transitional (0.56 sec)

  1. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    // are longer than allowed by the RFC.
    //
    // This option corresponds to the VerifyDnsLength flag in UTS #46.
    func VerifyDNSLength(verify bool) Option {
    	return func(o *options) { o.verifyDNSLength = verify }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func Transitional(transitional bool) Option {
    	return func(o *options) { o.transitional = transitional }
    }
    
    // VerifyDNSLength sets whether a Profile should fail if any of the IDN parts
    // are longer than allowed by the RFC.
    //
    // This option corresponds to the VerifyDnsLength flag in UTS #46.
    func VerifyDNSLength(verify bool) Option {
    	return func(o *options) { o.verifyDNSLength = verify }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/go118.go

    // Copyright 2021 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.
    
    //go:build go1.18
    
    package idna
    
    // Transitional processing is disabled by default in Go 1.18.
    // https://golang.org/issue/47510
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 401 bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
            "http://www.w3.org/TR/html4/loose.dtd">
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. src/encoding/xml/xml_test.go

    			}
    		})
    	}
    }
    
    const testInput = `
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <body xmlns:foo="ns1" xmlns="ns2" xmlns:tag="ns3" ` +
    	"\r\n\t" + `  >
      <hello lang="en">World &lt;&gt;&apos;&quot; &#x767d;&#40300;翔</hello>
      <query>&何; &is-it;</query>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt

    import okio.Options
    
    /**
     * A decoded [mapping table] that can perform the [mapping step] of IDNA processing.
     *
     * This implementation is optimized for readability over efficiency.
     *
     * This implements non-transitional processing by preserving deviation characters.
     *
     * This implementation's STD3 rules are configured to `UseSTD3ASCIIRules=false`. This is
     * permissive and permits the `_` character.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

     * are allowed to change roles. Starting in Gradle 9.0, all Gradle-created configurations will be locked.
     *
     * <p>The methods on this interface are meant to be transitional, and as such all usages of this interface
     * should be migrated to the public API starting in Gradle 9.0.<p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            }
            maxLen *= 9; /* convert to px */
    
            out = resp.getWriter();
    
            resp.setContentType( "text/html" );
    
            out.println( "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">" );
            out.println( "<html><head><title>Network Explorer</title>" );
            out.println( "<meta HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">" );
            out.println( "<style TYPE=\"text/css\">" );
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NetworkExplorer.java

                maxLen = 50;
            }
            maxLen *= 9; /* convert to px */
    
            resp.setContentType("text/html");
    
            out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
            out.println("<html><head><title>Network Explorer</title>");
            out.println("<meta HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">");
            out.println("<style TYPE=\"text/css\">");
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FluentIterable.java

       *
       * <p><b>Note:</b> the earlier in the chain you can switch to {@code Stream} usage (ideally not
       * going through {@code FluentIterable} at all), the more performant and idiomatic your code will
       * be. This method is a transitional aid, to be used only when really necessary.
       *
       * @since 21.0
       */
      public final Stream<E> stream() {
        return Streams.stream(getDelegate());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top