Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 363 for Gridin (0.17 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/KtFe10FileSymbol.kt

            get() = withValidityAssertion { file }
    
        override val annotationsObject: Annotations
            get() = withValidityAssertion { analysisContext.resolveSession.getFileAnnotations(file) }
    
        override val origin: KtSymbolOrigin
            get() = withValidityAssertion { if (file.isCompiled) KtSymbolOrigin.LIBRARY else KtSymbolOrigin.SOURCE }
    
        context(KtAnalysisSession)
    Plain Text
    - Registered: Fri Apr 12 08:18:09 GMT 2024
    - Last Modified: Wed Oct 18 07:59:27 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/KtFe10PackageSymbol.kt

        }
    
        context(KtAnalysisSession)
        override fun createPointer(): KtSymbolPointer<KtPackageSymbol> = withValidityAssertion {
            KtFe10PackageSymbolPointer(fqName)
        }
    
        override val origin: KtSymbolOrigin
            get() = withValidityAssertion {
                val virtualFile = PsiUtilCore.getVirtualFile(psi)
                return if (virtualFile != null) {
                    analysisContext.getOrigin(virtualFile)
    Plain Text
    - Registered: Fri Apr 12 08:18:09 GMT 2024
    - Last Modified: Tue Nov 29 13:33:46 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    ```
    git commit -am 'Add some feature'
    ```
    
    ### Push to the branch
    
    Push your locally committed changes to the remote origin (your fork)
    
    ```
    git push origin my-new-feature
    ```
    
    ### Create a Pull Request
    
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  4. deploy_website.sh

    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    # Delete our temp folder
    cd ..
    Shell Script
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Nov 20 15:26:12 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

            }
        }
    
        private fun FirCallableDeclaration.isDeclared(): Boolean =
            symbol.callableId.classId == owner.classId
                    && origin !is FirDeclarationOrigin.SubstitutionOverride
                    && origin != FirDeclarationOrigin.IntersectionOverride
    
        private fun FirRegularClass.isDeclared(): Boolean = symbol.classId.parentClassId == owner.classId
    
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         *     service is the origin of the stream. When zero, the origin is specified in the `origin`
         *     parameter.
         * @param origin when present, the [origin](http://tools.ietf.org/html/rfc6454) is typically
         *     represented as a combination of scheme, host and port. When empty, the origin is that of
         *     the `streamId`.
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/cors.md

    🛠️ 📨 2️⃣ 🎯 🆎 🇺🇸🔍 📨...
    
    ### ⚜ 🛫 📨
    
    👉 🙆 `OPTIONS` 📨 ⏮️ `Origin` &amp; `Access-Control-Request-Method` 🎚.
    
    👉 💼 🛠️ 🔜 🆘 📨 📨 &amp; 📨 ⏮️ ☑ ⚜ 🎚, &amp; 👯‍♂️ `200` ⚖️ `400` 📨 🎓 🎯.
    
    ### 🙅 📨
    
    🙆 📨 ⏮️ `Origin` 🎚. 👉 💼 🛠️ 🔜 🚶‍♀️ 📨 🔘 😐, ✋️ 🔜 🔌 ☑ ⚜ 🎚 🔛 📨.
    
    ## 🌅 ℹ
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertyGetterSymbol.kt

        override val returnType: KtType
            get() = withValidityAssertion { propertyDescriptor.type.toKtType(analysisContext) }
    
        override val origin: KtSymbolOrigin
            get() = withValidityAssertion { propertyDescriptor.getSymbolOrigin(analysisContext) }
    
        override val psi: PsiElement?
            get() = withValidityAssertion { null }
    
    Plain Text
    - Registered: Fri Apr 12 08:18:09 GMT 2024
    - Last Modified: Tue Nov 29 13:33:46 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbol.kt

        override val psi: P
        val descriptor: D?
    
        override val annotationsObject: Annotations
            get() = withValidityAssertion { descriptor?.annotations ?: Annotations.EMPTY }
    
        override val origin: KtSymbolOrigin
            get() = withValidityAssertion { psi.ktSymbolOrigin }
    Plain Text
    - Registered: Fri Apr 12 08:18:09 GMT 2024
    - Last Modified: Wed Jun 22 07:31:36 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  10. cmd/generic-handlers.go

    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if origin := w.Header().Get("Access-Control-Allow-Origin"); origin == "null" {
    			// This is a workaround change to ensure that "Origin: null"
    			// incoming request to a response back as "*" instead of "null"
    			w.Header().Set("Access-Control-Allow-Origin", "*")
    		}
    		if globalDNSConfig == nil || !globalBucketFederation ||
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 01:08:52 GMT 2024
    - 20.7K bytes
    - Viewed (0)
Back to top