Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for projectFor (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/README.md

    #### Example multi-language sample file listing
    This shows Groovy and Kotlin sample projects under "sample-dir" which is defined as "$projectDir/src/snippets".
    
    ```
    platforms/documentation/docs/src/snippets/
    └── initScripts/customLogger/
        ├── customLogger.out
        ├── customLogger.sample.conf
        ├── groovy
        │   ├── build.gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K 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. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          auto quant_type = GetIntermediateElementType<SourceOp>(op, index);
          if (!quant_type) {
            // intermediate tensor 4 is optional, unless the LSTM uses projection.
            if (index == 4 && !lstm_variant.use_projection) {
              return success();
            }
            op.emitError() << intermediate_attributes[index]
                           << " is not quantized.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. 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)
Back to top