Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,261 for delegated (0.22 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        if (isEmpty()) return
    
        // One of the compiler lowerings, namely `PropertyReferenceLowering`,
        // optimizes usages of property references in some cases,
        // and if a containing delegated property accessor is inline,
        // it might need this accessor's bytecode.
        //
        // If an accessor function is defined in a different module,
        // IDE tries to acquire its bytecode via the index, however,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/settings.gradle.kts

    rootProject.name = "properties"
    
    // tag::gradle-properties[]
    // Using the API, provides a lazy Provider<String>
    println(providers.gradleProperty("gradlePropertiesProp").get())
    
    // Using Kotlin delegated properties on `settings`
    val gradlePropertiesProp: String by settings
    println(gradlePropertiesProp)
    // end::gradle-properties[]
    
    // tag::properties-with-dots[]
    // In Kotlin scripts, using the API is the only way
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. releasenotes/notes/46968.yaml

    kind: bug-fix
    area: security
    issue:
    - 46951
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 04:13:49 UTC 2023
    - 304 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/kotlin/build.gradle.kts

    // tag::gradle-properties[]
    // Using the API, provides a lazy Provider<String>
    println(providers.gradleProperty("gradlePropertiesProp").get())
    
    // Using Kotlin delegated properties on `project`
    val gradlePropertiesProp: String by project
    println(gradlePropertiesProp)
    // end::gradle-properties[]
    
    abstract class PrintValue : DefaultTask() {
        @get:Input abstract val inputValue: Property<String>
        @TaskAction fun action() { println(inputValue.get()) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 731 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ConfigurableFileCollectionExtensionsTest.kt

    import org.hamcrest.CoreMatchers.sameInstance
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class ConfigurableFileCollectionExtensionsTest {
    
        @Test
        fun `assignment to delegated property means #setFrom`() {
    
            val fileCollection = mock<ConfigurableFileCollection>()
            var delegatedProperty by fileCollection
    
            val value = mock<ConfigurableFileCollection>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 733 bytes
    - Viewed (0)
  6. pkg/kubeapiserver/doc.go

    limitations under the License.
    */
    
    // Package kubeapiserver holds code that is common to both the kube-apiserver
    // and the federation-apiserver, but isn't part of a generic API server.
    // For instance, the non-delegated authorization options are used by those two
    // servers, but no generic API server is likely to use them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 19:25:32 UTC 2019
    - 884 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		if err != nil && s.RemoteKubeConfigFileOptional {
    			if err != rest.ErrNotInCluster {
    				klog.Warningf("failed to read in-cluster kubeconfig for delegated authorization: %v", err)
    			}
    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authorization kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/projectProperties/kotlin/build.gradle.kts

    }
    
    // Accessing the value of a project property, null if absent
    println(findProperty("myProjectProp"))
    
    // Accessing the Map<String, Any?> of project properties
    println(properties["myProjectProp"])
    
    // Using Kotlin delegated properties on `project`
    val myProjectProp: String by project
    println(myProjectProp)
    // end::configuration[]
    
    abstract class PrintValue : DefaultTask() {
        @get:Input abstract val inputValue: Property<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 918 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbol.kt

        FirDeclarationOrigin.Enhancement, FirDeclarationOrigin.RenamedForOverride -> javaOriginBasedOnSessionKind()
        FirDeclarationOrigin.IntersectionOverride -> KaSymbolOrigin.INTERSECTION_OVERRIDE
        FirDeclarationOrigin.Delegated -> KaSymbolOrigin.DELEGATED
        FirDeclarationOrigin.Synthetic.FakeHiddenInPreparationForNewJdk -> KaSymbolOrigin.LIBRARY
        is FirDeclarationOrigin.Synthetic -> {
            when {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      }
    
      // We assume all other TF operators are flex delegated.
      return op->getDialect()->getNamespace() == "tf";
    }
    
    // This is a variation of the algorithm from
    // llvm/llvm-project/mlir/lib/Transforms/Utils/TopologicalSortUtils.cpp.
    //
    // Takes a function object `partition` that maps operations to one of two types
    // (for the current use case, flex delegate or not.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top