Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,124 for cent (0.05 sec)

  1. src/main/java/org/codelibs/core/convert/StringConversionUtil.java

        public static final char MINUS_SIGN = '\u2212';
    
        /** FULLWIDTH HYPHEN-MINUS */
        public static final char FULLWIDTH_HYPHEN_MINUS = '\uFF0D';
    
        /** CENT SIGN */
        public static final char CENT_SIGN = '\u00A2';
    
        /** FULLWIDTH CENT SIGN */
        public static final char FULLWIDTH_CENT_SIGN = '\uFFE0';
    
        /** POUND SIGN */
        public static final char POUND_SIGN = '\u00A3';
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/html/entity.go

    		"ccupssm;":                         '\U00002A50',
    		"cdot;":                            '\U0000010B',
    		"cedil;":                           '\U000000B8',
    		"cemptyv;":                         '\U000029B2',
    		"cent;":                            '\U000000A2',
    		"centerdot;":                       '\U000000B7',
    		"cfr;":                             '\U0001D520',
    		"chcy;":                            '\U00000447',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  3. src/mdo/reader-stax.vm

        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
            entities.put("sect", "\u00a7");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
            entities.put("sect", "\u00a7");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&ccupssm;":                         "\u2a50",
    	"&cdot;":                            "\u010b",
    	"&cedil;":                           "\u00b8",
    	"&cemptyv;":                         "\u29b2",
    	"&cent;":                            "\u00a2",
    	"&centerdot;":                       "\u00b7",
    	"&cfr;":                             "\U0001d520",
    	"&chcy;":                            "\u0447",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    				b0, b1 = 0, 0
    				continue Input
    			}
    			if !d.Strict {
    				b0, b1 = 0, 0
    				continue Input
    			}
    			ent := string(d.buf.Bytes()[before:])
    			if ent[len(ent)-1] != ';' {
    				ent += " (no semicolon)"
    			}
    			d.err = d.syntaxError("invalid character entity " + ent)
    			return nil
    		}
    
    		// We must rewrite unescaped \r and \r\n into \n.
    		if b == '\r' {
    			d.buf.WriteByte('\n')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. tests/integration/security/util/cert/cert.go

    	return CreateCustomCASecret(ctx,
    		"ca-cert.pem", "ca-key.pem",
    		"cert-chain.pem", "root-cert.pem")
    }
    
    // CreateCASecretAlt creates a k8s secret "cacerts" to store the CA key and cert using an alternative set of certs.
    func CreateCASecretAlt(ctx resource.Context) error {
    	return CreateCustomCASecret(ctx,
    		"ca-cert-alt.pem", "ca-key-alt.pem",
    		"cert-chain-alt.pem", "root-cert-alt.pem")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. pkg/test/cert/cert.go

    //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package cert
    
    import (
    	"fmt"
    	"os/exec"
    )
    
    // GenerateKey and writes output to keyFile.
    func GenerateKey(keyFile string) error {
    	return openssl("genrsa", "-out", keyFile, "1024")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/testdata/vmconfig/ipv6/root-cert.pem.golden

    fake-CA-cert...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 12 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/testdata/localhost__/apiserver-loopback-client__/cert

    Justin SB <******@****.***> 1546536079 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 03 17:21:31 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top