Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for projectFor (0.14 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            }
            else -> arguments.any { typeProjection ->
                // A star projection type (lazily) built by type parameter will be yet another type with a star projection,
                // resulting in stack overflow if we keep checking allowed type parameter descriptors
                !typeProjection.isStarProjection &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. pkg/volume/configmap/configmap.go

    	if err != nil {
    		klog.Errorf("Error writing payload to dir: %v", err)
    		return err
    	}
    
    	setupSuccess = true
    	return nil
    }
    
    // MakePayload function is exported so that it can be called from the projection volume driver
    func MakePayload(mappings []v1.KeyToPath, configMap *v1.ConfigMap, defaultMode *int32, optional bool) (map[string]volumeutil.FileProjection, error) {
    	if defaultMode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

            is ConeKotlinTypeProjectionIn -> "in ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeProjectionOut -> "out ${type.renderTypeAsKotlinType()}"
            is ConeKotlinTypeConflictingProjection -> "CONFLICTING-PROJECTION ${type.renderTypeAsKotlinType()}"
            is ConeKotlinType -> renderTypeAsKotlinType()
        }
    
        private object DummyScopeProvider : FirScopeProvider() {
            override fun getUseSiteMemberScope(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/volume/downwardapi/downwardapi.go

    // Map's key is the requested name of file to dump
    // Map's value is the (sorted) content of the field to be dumped in the file.
    //
    // Note: this function is exported so that it can be called from the projection volume driver
    func CollectData(items []v1.DownwardAPIVolumeFile, pod *v1.Pod, host volume.VolumeHost, defaultMode *int32) (map[string]volumeutil.FileProjection, error) {
    	if defaultMode == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        externalJar2(External jar2)
        externalJar2_2(External jar2)
        modifiedExternalJar2(External jar2*)
        projectJar(Project jar)
        projectJar_2(Project jar)
        modifiedProjectJar(Project jar*)
    
        subgraph Plugins classpath
            classpath
            externalJar1
            externalJar2
            projectJar
        end
    
        subgraph External dependencies pipeline
            instrumentAndUpgrade
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. settings.gradle.kts

    class ProjectScope(
        private val basePath: String
    ) {
        fun subproject(projectName: String) {
            include(projectName)
            project(":$projectName").projectDir = file("$basePath/$projectName")
        }
    }
    
    class ElementId(val id: String) : Serializable {
        override fun toString(): String {
            return id
        }
    }
    
    sealed class ArchitectureElement(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pkg/volume/projected/projected.go

    				if err != nil {
    					errlist = append(errlist, err)
    					continue
    				}
    			} else {
    				errlist = append(errlist, fmt.Errorf("ClusterTrustBundle projection requires either name or signerName to be set"))
    				continue
    			}
    
    			mode := *s.source.DefaultMode
    			if mounterArgs.FsUser != nil || mounterArgs.FsGroup != nil {
    				mode = 0600
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            if (typeArguments.size != typeParameters.size) return emptyMap()
    
            return buildMap(typeArguments.size) {
                for ((index, projection) in typeArguments.withIndex()) {
                    if (projection !is ConeKotlinType) return emptyMap()
                    put(typeParameters[index], projection.asKtType())
                }
            }
        }
    
        /**
         * Maps [typeArguments] to the type parameters of [partiallyAppliedSymbol].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.properties
    
        override fun absoluteProjectPath(path: String): String =
            delegate.absoluteProjectPath(path)
    
        override fun getProjectDir(): File =
            delegate.projectDir
    
        override fun files(vararg paths: Any?): ConfigurableFileCollection =
            delegate.files(*paths)
    
        override fun files(paths: Any, configureClosure: Closure<*>): ConfigurableFileCollection =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                 TypeIsPred<"cell_to_input_weights", NoneType>]>]>]>>;
    
    def LstmProjectionWeightBiasConstraint : PredOpTrait<
      "either projection weight must be specified or both projection weight and "
      "projection bias must not be specified",
       Or<[
          And<[TypeIsPred<"projection_weights", NoneType>,
               TypeIsPred<"projection_bias", NoneType>]>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top