Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 253 for References (0.27 sec)

  1. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // APIGroup is the group for the resource being referenced
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
      // Name is the name of resource being referenced
      optional string name = 3;
    }
    
    // Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // APIGroup is the group for the resource being referenced
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
      // Name is the name of resource being referenced
      optional string name = 3;
    }
    
    // Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/build.gradle.kts

        implementation(project(":analysis:analysis-api-impl-base"))
        implementation(project(":analysis:analysis-internal-utils"))
        implementation(project(":analysis:kt-references"))
        implementation(project(":analysis:kt-references:kt-references-fe10"))
        implementation(project(":compiler:light-classes"))
    
        implementation(project(":compiler:backend"))
        implementation(project(":compiler:backend-common"))
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 28 16:10:07 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

      ): Int {
        connection.lock.assertHeld()
    
        val references = connection.calls
        var i = 0
        while (i < references.size) {
          val reference = references[i]
    
          if (reference.get() != null) {
            i++
            continue
          }
    
          // We've discovered a leaked call. This is an application bug.
          val callReference = reference as CallReference
          val message =
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1/generated.proto

      // APIGroup is the group for the resource being referenced
      optional string apiGroup = 1;
    
      // Kind is the type of resource being referenced
      optional string kind = 2;
    
      // Name is the name of resource being referenced
      optional string name = 3;
    }
    
    // Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/references/ReadWriteAccessCheckerDescriptorsImpl.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.descriptors.references
    
    import org.jetbrains.kotlin.analysis.api.analyze
    import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade
    import org.jetbrains.kotlin.analysis.api.descriptors.KtFe10AnalysisSession
    import org.jetbrains.kotlin.idea.references.ReadWriteAccessChecker
    import org.jetbrains.kotlin.psi.KtBinaryExpression
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 10 16:23:23 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

        /**
         * It only makes sense to provide type for the references which reference some actual properties/variables.
         *
         * In cases when the name reference references a function (a REAL function, not a functional type variable), it does not
         * make sense to provide any type for it.
         *
         * ---
         *
         * Why not just always provide null for name references? In such case, the following case would be a problem:
         *
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 18:13:17 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

    import org.jetbrains.kotlin.fir.pipeline.*
    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.references.FirReference
    import org.jetbrains.kotlin.fir.references.FirThisReference
    import org.jetbrains.kotlin.fir.references.toResolvedSymbol
    import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol
    import org.jetbrains.kotlin.fir.symbols.lazyResolveToPhaseRecursively
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 32.2K bytes
    - Viewed (1)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/ReadWriteAccessCheckerFirImpl.kt

    package org.jetbrains.kotlin.analysis.api.fir.references
    
    import org.jetbrains.kotlin.idea.references.ReadWriteAccessChecker
    import org.jetbrains.kotlin.idea.references.mainReference
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.KtBinaryExpression
    import org.jetbrains.kotlin.psi.KtExpression
    import org.jetbrains.kotlin.psi.KtNamedFunction
    import org.jetbrains.kotlin.resolve.references.ReferenceAccess
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 10 16:23:23 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KtFirInvokeFunctionReference.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.idea.references
    
    import org.jetbrains.kotlin.analysis.api.KtAnalysisSession
    import org.jetbrains.kotlin.analysis.api.calls.KtSimpleFunctionCall
    import org.jetbrains.kotlin.analysis.api.calls.calls
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jun 21 20:40:22 GMT 2023
    - 1.2K bytes
    - Viewed (0)
Back to top