Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Sarker (0.1 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/markers.kt

    public interface KaSymbolWithTypeParameters : KaSymbol {
        public val typeParameters: List<KaTypeParameterSymbol>
    }
    
    public typealias KtSymbolWithTypeParameters = KaSymbolWithTypeParameters
    
    /**
     * A marker interface for symbols which could potentially be `expect` or `actual`. For more details about `expect` and `actual`
     * declarations, see [documentation](https://kotlinlang.org/docs/multiplatform-connect-to-apis.html).
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

    Sergey Igushkin <******@****.***> 1712225595 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/internal/trace/parser.go

    Carlos Amedee <******@****.***> 1715110630 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/structs/hostlayout.go

    // containing the struct marked as host layout.
    //
    // By convention, HostLayout should be used as the type of a field
    // named "_", placed at the beginning of the struct type definition.
    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    // We use an unexported type within the exported type to give the marker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		// Handle inline elements with nested content.
    		switch in := ins[i].(type) {
    		case *md.Strong:
    			res = append(res, &md.Strong{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    
    		case *md.Emph:
    			res = append(res, &md.Emph{
    				Marker: in.Marker,
    				Inner:  addSymbolLinksInlines(in.Inner, defaultPackage),
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            val elementsByMarker = collectElementsToResolve(mainFile, mainModule, testServices).groupBy { it.marker }
            val actual = prettyPrint {
                printMap(
                    map = elementsByMarker,
                    omitSingleKey = true,
                    renderKey = { key, _ -> append("$key:") }
                ) { marker, byMarker ->
                    val elementsByMarkerAndContext = byMarker.groupBy { it.context }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/plugin/software/internal/ConventionReceiver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugin.software.internal;
    
    /**
     * Marker interface for objects that can receive conventions of a certain type and apply them appropriately.
     *
     * @since 8.9
     */
    public interface ConventionReceiver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 837 bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

            def markerModules = new ArrayList<Module>()
    
            pluginIds.keySet().each { id ->
                // The marker files for each plugin.
                def marker = ivyRepo.module(id, id + PLUGIN_MARKER_SUFFIX, omr[2])
                marker.dependsOn(module)
                marker.publish()
                markerModules.add(marker)
            }
    
            publishTo(executer, artifactFile);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    			dprintf(depth+1, "URL: %q\n", in.URL)
    		case *md.Strong:
    			dprintf(depth, "Strong(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		case *md.Emph:
    			dprintf(depth, "Emph(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		case *md.Del:
    			dprintf(depth, "Del(%q):\n", in.Marker)
    			dumpInlines(in.Inner, depth+1)
    		default:
    			fmt.Printf("%*s%#v\n", depth*4, "", in)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

                return container
            }
            container.add(element)
        }
        return container
    }
    
    
    private
    object CircularReferenceMarker {
    
        val INSTANCE: Any = Marker.INSTANCE
    
        private
        enum class Marker {
            INSTANCE
        }
    }
    
    
    private
    fun Class<*>.overridesHashCode(): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top