Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,162 for Fun (0.73 sec)

  1. src/cmd/compile/internal/ssa/cse_test.go

    			Goto("exit")),
    		Bloc("exit",
    			Exit("rstore")))
    
    	CheckFunc(fun.f)
    	zcse(fun.f)
    	deadcode(fun.f)
    	CheckFunc(fun.f)
    
    	if fun.values["c1"].Op != OpInvalid && fun.values["c2"].Op != OpInvalid {
    		t.Errorf("zsce should have removed c1 or c2")
    	}
    	if fun.values["sb1"].Op != OpInvalid && fun.values["sb2"].Op != OpInvalid {
    		t.Errorf("zsce should have removed sb1 or sb2")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/AbstractCompileAvoidanceIntegrationTest.kt

        companion object CacheBuster {
            var cacheBuster = UUID.randomUUID()
        }
    
        @Before
        fun init() {
            cacheBuster = UUID.randomUUID()
    
            withDefaultSettings().appendText(
                """
                rootProject.name = "test-project"
                """
            )
        }
    
        protected
        fun givenJavaClassInBuildSrcContains(classBody: String, classAnnotations: String = ""): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            return createPackageScope(packageSymbol.fqName)
        }
    
        override fun getCompositeScope(subScopes: List<KaScope>): KaScope {
            return KaCompositeScope.create(subScopes, token)
        }
    
        override fun getTypeScope(type: KaType): KaTypeScope? {
            check(type is KaFirType) { "KtFirScopeProvider can only work with KtFirType, but ${type::class} was provided" }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

        var transformChain: TransformChain? = null
    
        override fun asDescribable(): DisplayName {
            return Describables.of(source)
        }
    
        override fun getSchema(): AttributesSchemaInternal {
            return EmptySchema.INSTANCE
        }
    
        override fun getVariants(): Set<ResolvedVariant> {
            return setOf(this)
        }
    
        override fun getOverriddenAttributes(): ImmutableAttributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/BaseTestHandler.kt

        fail("")
      }
    
      override fun settings(
        clearPrevious: Boolean,
        settings: Settings,
      ) {
        fail("")
      }
    
      override fun ackSettings() {
        fail("")
      }
    
      override fun ping(
        ack: Boolean,
        payload1: Int,
        payload2: Int,
      ) {
        fail("")
      }
    
      override fun goAway(
        lastGoodStreamId: Int,
        errorCode: ErrorCode,
        debugData: ByteString,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

        fun build() = Bindings(ImmutableList.copyOf(bindings))
    
        inline fun <reified T> bind(codec: Codec<T>) =
            bind(T::class.java, codec)
    
        inline fun <reified T> bind(serializer: Serializer<T>) =
            bind(T::class.java, serializer)
    
        fun bind(type: KClass<*>, codec: Codec<*>) =
            bind(type.java, codec)
    
        fun bind(type: KClass<*>, serializer: Serializer<*>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinDslScriptsModelBuilder.kt

        private val exceptions: List<String>
    ) : KotlinDslScriptModel, Serializable {
    
        override fun getClassPath() = classPath
    
        override fun getSourcePath() = sourcePath
    
        override fun getImplicitImports() = implicitImports
    
        override fun getEditorReports() = editorReports
    
        override fun getExceptions() = exceptions
    }
    
    
    private
    data class StandardEditorReport(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 18:13:21 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

    object NullValueSnapshotCodec : Codec<NullValueSnapshot> {
        override suspend fun WriteContext.encode(value: NullValueSnapshot) {
        }
    
        override suspend fun ReadContext.decode(): NullValueSnapshot {
            return NullValueSnapshot.INSTANCE
        }
    }
    
    
    object IsolatedEnumValueSnapshotCodec : Codec<IsolatedEnumValueSnapshot> {
        override suspend fun WriteContext.encode(value: IsolatedEnumValueSnapshot) {
            write(value.value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            override fun toString(): String = "Int"
            private
            fun readResolve(): Any = DefaultIntDataType
        }
    
        @Serializable
        @SerialName("long")
        data object DefaultLongDataType : DataType.LongDataType {
            override val constantType: Class<Long> = Long::class.java
            override fun toString(): String = "Long"
            private
            fun readResolve(): Any = DefaultLongDataType
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt

            resolvePublicAddresses,
          )
        }
    
        fun client(client: OkHttpClient) =
          apply {
            this.client = client
          }
    
        fun url(url: HttpUrl) =
          apply {
            this.url = url
          }
    
        fun includeIPv6(includeIPv6: Boolean) =
          apply {
            this.includeIPv6 = includeIPv6
          }
    
        fun post(post: Boolean) =
          apply {
            this.post = post
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Mar 22 07:09:21 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top