Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Coptic (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            private final String page;
            private final String section;
    
            private final String topic;
    
            private UserGuide(String id, @Nullable String section) {
                this.page = Preconditions.checkNotNull(id);
                this.section = section;
                this.topic = null;
            }
    
            @Override
            public String getUrl() {
                if (section == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pyproject.toml

        "Programming Language :: Python :: 3",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Software Development :: Libraries :: Application Frameworks",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Topic :: Software Development :: Libraries",
        "Topic :: Software Development",
        "Typing :: Typed",
        "Development Status :: 4 - Beta",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtTypeErrorTypeRenderer.kt

            analysisSession: KaSession,
            type: KaErrorType,
            typeRenderer: KaTypeRenderer,
            printer: PrettyPrinter,
        )
    
        public object AS_CODE_IF_POSSIBLE : KaErrorTypeRenderer {
            @OptIn(KaAnalysisNonPublicApi::class)
            override fun renderType(
                analysisSession: KaSession,
                type: KaErrorType,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. internal/event/target/nsq.go

    	EnvNSQQueueLimit    = "MINIO_NOTIFY_NSQ_QUEUE_LIMIT"
    )
    
    // NSQArgs - NSQ target arguments.
    type NSQArgs struct {
    	Enable      bool      `json:"enable"`
    	NSQDAddress xnet.Host `json:"nsqdAddress"`
    	Topic       string    `json:"topic"`
    	TLS         struct {
    		Enable     bool `json:"enable"`
    		SkipVerify bool `json:"skipVerify"`
    	} `json:"tls"`
    	QueueDir   string `json:"queueDir"`
    	QueueLimit uint64 `json:"queueLimit"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/help.go

    Additional help topics:
    {{range .Commands}}{{if and (not .Runnable) (not .Commands)}}
    	{{.Name | printf "%-15s"}} {{.Short}}{{end}}{{end}}
    
    Use "go help{{with .LongName}} {{.}}{{end}} <topic>" for more information about that topic.
    {{end}}
    `
    
    var helpTemplate = `{{if .Runnable}}usage: {{.UsageLine}}
    
    {{end}}{{.Long | trim}}
    `
    
    var documentationTemplate = `{{range .}}{{if .Short}}{{.Short | capitalize}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top