This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* @(#)HashMap.java 1.30 01/11/29 | |
* | |
* Copyright 2002 Sun Microsystems, Inc. All rights reserved. | |
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
*/ | |
package java.util; | |
import java.io.*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NAME = hello.bin | |
CC = gcc | |
SRCS = hello.S | |
OBJS = $(SRCS:.S=.o) | |
$(NAME) : $(OBJS) | |
$(LD) -e main -o $(NAME) $(OBJS) | |
clean : | |
$(RM) $(OBJS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "rockylinux/9", | |
"description": "", | |
"short_description": "", | |
"versions": [ | |
{ | |
"version": "4.0.1", | |
"description_html": "<p><a href=\"https://docs.rockylinux.org/release_notes/9_5/\" rel=\"nofollow\">https://docs.rockylinux.org/release_notes/9_5/</a></p>\n", | |
"description_markdown": "https://docs.rockylinux.org/release_notes/9_5/", | |
"providers": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package yuji.software; | |
import java.io.*; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.time.OffsetDateTime; | |
import java.time.ZoneOffset; | |
import java.util.Optional; | |
import java.util.function.Predicate; | |
import java.util.stream.Stream; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.nio.charset.StandardCharsets; | |
public class NG1 { | |
public static void main(String[] args) { | |
String str = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Classfile /home/yuji/repos/gist/jjug_ccc_2023/sample/com/example/Main.class | |
Last modified 2023/05/28; size 426 bytes | |
SHA-256 checksum 2887486397f85a098cd8908463d9499351497938089eafc72988a5cbaf4b55e0 | |
Compiled from "Main.java" | |
public class com.example.Main | |
minor version: 0 | |
major version: 64 | |
flags: (0x0021) ACC_PUBLIC, ACC_SUPER | |
this_class: #21 // com/example/Main | |
super_class: #2 // java/lang/Object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env ruby | |
content_dir = File.expand_path(ARGV[0]) | |
translated_dir = File.expand_path(ARGV[1]) | |
Dir.glob("**/*.md", base: translated_dir).each do |path| | |
content_file = "#{content_dir}/#{path}" | |
translated_file = "#{translated_dir}/#{path}" | |
has = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env ruby | |
require 'yaml' | |
require 'json' | |
removed = Hash.new { |hash, key| hash[key] = 0 } | |
ARGV.each do |base| | |
Dir.glob(["**/*.html", "**/*.md"], base: base).each do |path| | |
file = File.join(base, path) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.String; | |
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.List; | |
public class Main { | |
public static void main(String[] args) { | |
sortByLength(Arrays.asList(args)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/files/ja/mozilla/add-ons/webextensions/api/alarms/alarm/index.html b/files/ja/mozilla/add-ons/webextensions/api/alarms/alarm/index.html | |
index 6d91ff819..56bbda4ba 100644 | |
--- a/files/ja/mozilla/add-ons/webextensions/api/alarms/alarm/index.html | |
+++ b/files/ja/mozilla/add-ons/webextensions/api/alarms/alarm/index.html | |
@@ -34,9 +34,3 @@ translation_of: Mozilla/Add-ons/WebExtensions/API/alarms/Alarm | |
<p>{{Compat("webextensions.api.alarms.Alarm")}}</p> | |
-<p>{{WebExtExamples}}</p> | |
- |
NewerOlder