Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for Coptic (0.17 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2CD4          ; mapped                 ; 2CD5          # 4.1  COPTIC CAPITAL LETTER OLD COPTIC HAT
    2CD5          ; valid                                  # 4.1  COPTIC SMALL LETTER OLD COPTIC HAT
    2CD6          ; mapped                 ; 2CD7          # 4.1  COPTIC CAPITAL LETTER OLD COPTIC GANGIA
    2CD7          ; valid                                  # 4.1  COPTIC SMALL LETTER OLD COPTIC GANGIA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Caucasian_Albanian <type 1>;
    var Cc <type 1>;
    var Cf <type 1>;
    var Chakma <type 1>;
    var Cham <type 1>;
    var Cherokee <type 1>;
    var Co <type 1>;
    var Common <type 1>;
    var Coptic <type 1>;
    var Cs <type 1>;
    var Cuneiform <type 1>;
    var Cypriot <type 1>;
    var Cyrillic <type 1>;
    var Dash <type 1>;
    var Deprecated <type 1>;
    var Deseret <type 1>;
    var Devanagari <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    	Common                 = _Common                 // Common is the set of Unicode characters in script Common.
    	Coptic                 = _Coptic                 // Coptic is the set of Unicode characters in script Coptic.
    	Cuneiform              = _Cuneiform              // Cuneiform is the set of Unicode characters in script Cuneiform.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

        public val MODULE_STATE_MODIFICATION: Topic<KotlinModuleStateModificationListener> =
            Topic(KotlinModuleStateModificationListener::class.java, Topic.BroadcastDirection.TO_CHILDREN, true)
    
        public val MODULE_OUT_OF_BLOCK_MODIFICATION: Topic<KotlinModuleOutOfBlockModificationListener> =
            Topic(KotlinModuleOutOfBlockModificationListener::class.java, Topic.BroadcastDirection.TO_CHILDREN, true)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. internal/event/target/nsq_test.go

    					Name:      "127.0.0.1",
    					Port:      4150,
    					IsPortSet: true,
    				},
    				Topic: "topic",
    			},
    			wantErr: false,
    		},
    		{
    			name: "test4_emptynsqdaddr",
    			fields: fields{
    				Enable:      true,
    				NSQDAddress: xnet.Host{},
    				Topic:       "topic",
    			},
    			wantErr: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			n := NSQArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        public String getDocumentationRecommendationFor(String topic, String id) {
            return getRecommendationString(topic, getDocumentationFor(id));
        }
    
        public String getDocumentationRecommendationFor(String topic, String id, String section) {
            return getRecommendationString(topic, getDocumentationFor(id, section));
        }
    
        public String getDocumentationRecommendationFor(String topic, DocLink docLink) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/ctrlz/fw/context.go

    	"html/template"
    
    	"github.com/gorilla/mux"
    )
    
    // Topic is used to describe a single major ControlZ functional area.
    type Topic interface {
    	// Title returns the title for the area, which will be used in the sidenav and window title.
    	Title() string
    
    	// Prefix is the name used to reference this functionality in URLs.
    	Prefix() string
    
    	// Activate triggers a topic to register itself to receive traffic.
    	Activate(TopicContext)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/ctrlz/ctrlz.go

    				return ipnet.IP.String()
    			}
    		}
    	}
    	return ""
    }
    
    type topic struct {
    	Name string
    	URL  string
    }
    
    func getTopics() []topic {
    	topicMutex.Lock()
    	defer topicMutex.Unlock()
    
    	topics := make([]topic, 0, len(allTopics))
    	for _, t := range allTopics {
    		topics = append(topics, topic{Name: t.Title(), URL: "/" + t.Prefix() + "z/"})
    	}
    
    	return topics
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pkg/ctrlz/topics/collection.go

    	Get(id string) (any, error)
    }
    
    // collection topic is a Topic fw.implementation that exposes a set of collections through CtrlZ.
    type collectionTopic struct {
    	title       string
    	prefix      string
    	collections []ReadableCollection
    
    	mainTmpl *template.Template
    	listTmpl *template.Template
    	itemTmpl *template.Template
    }
    
    var _ fw.Topic = &collectionTopic{}
    
    // Title is implementation of Topic.Title.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtSymbolBasedReference.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaSymbolBasedReference
    
    @OptIn(KaAnalysisApiInternals::class)
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaSymbolBasedReference = KaSymbolBasedReference
    
    @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 677 bytes
    - Viewed (0)
Back to top