Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for projectFor (0.17 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. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                    unzipped project(path: '${bar.path}', configuration: 'zipped')
                }
            """
            bar.buildFile << """
                ${zipTaskConfiguration}
            """
            bar.projectDir.createDir('inputFiles').createFile('bar.txt')
    
            when:
            args '--parallel', '--max-workers=2'
            succeeds(generate.path, clean.path)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            """
                ${instrument("'settings'")}
                $includes
                rootProject.children.each { project ->
                    project.projectDir = new File(project.name)
                    project.buildFileName = "\${project.name}.gradle"
                }
            """
        }
    
        String taskThrowingError() {
            simpleBuild('''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer.go

    		return nil, err
    	}
    
    	return &AtomicWriter{targetDir: targetDir, logContext: logContext}, nil
    }
    
    const (
    	dataDirName    = "..data"
    	newDataDirName = "..data_tmp"
    )
    
    // Write does an atomic projection of the given payload into the writer's target
    // directory.  Input paths must not begin with '..'.
    // setPerms is an optional pointer to a function that caller can provide to set the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

            inDirectory(file(path))
        }
    
        protected GradleExecuter inDirectory(File directory) {
            executer.inDirectory(directory)
        }
    
        protected GradleExecuter projectDir(path) {
            executer.usingProjectDirectory(file(path))
        }
    
        /**
         * Use requireOwnGradleUserHomeDir(because) instead
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top