Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for sourceDir (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

                    return loadAlreadyProducedOutput(workspace);
                }
            };
        }
    
        private void instrument(File sourceDir, File destination) {
            ClasspathElementTransform transform = transformFactory.createTransformer(sourceDir, new InstrumentingClassTransform(), InstrumentationTypeRegistry.EMPTY);
            transform.transform(destination);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        public void copyTo(File target) {
            if (isDirectory()) {
                try {
                    final Path targetDir = target.toPath();
                    final Path sourceDir = this.toPath();
                    Files.walkFileTree(sourceDir, EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, new SimpleFileVisitor<Path>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    }
    
    abstract class MyCopyTask : DefaultTask() {                 // <3>
        @TaskAction
        fun copyFiles() {
            val sourceDir = File("sourceDir")
            val destinationDir = File("destinationDir")
            sourceDir.listFiles()?.forEach { file ->
                if (file.isFile && file.extension == "txt") {
                    file.copyTo(File(destinationDir, file.name))
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            def matches = libs.findAll { it.jarName.contains(jarName) } + vars.findAll { it.jarName == jarName }
            assert matches.size() == 1
            return matches[0]
        }
    
        EclipseSourceDir sourceDir(String path) {
            def matches = getSourceDirs().findAll { it.path == path }
            assert matches.size() == 1
            return matches[0]
        }
    
        List<EclipseLibrary> getLibs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

                @Suppress("DEPRECATION") jvmTarget.set(jvmTargetProvider)
    
                dependsOn(extractPrecompiledScriptPluginPlugins)
                sourceDir(extractedPluginsBlocks)
    
                dependsOn(generateExternalPluginSpecBuilders)
                sourceDir(externalPluginSpecBuilders)
    
                classPathFiles.from(compileClasspath)
                outputDir.set(compiledPluginsBlocks)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

          return "";
        }
      }
    
      mlir::MLIRContext context;
      context.printOpOnDiagnostic(true);
      llvm::SourceMgr sourceMgr;
      sourceMgr.AddNewSourceBuffer(std::move(input), llvm::SMLoc());
    
      mlir::OwningOpRef<mlir::ModuleOp> module =
          FlatBufferFileToMlirTranslation(&sourceMgr, &context);
      if (!module || failed(verify(*module))) return "";
    
      std::string mlir_output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/path_config.cc

          tensorflow::str_util::Split(source_dir, "/");
      auto source_tfroot_pos = std::find(source_path_components.begin(),
                                         source_path_components.end(), tf_root_dir);
      if (source_tfroot_pos != source_path_components.end()) {
        tf_prefix_dir =
            absl::StrJoin(source_path_components.begin(), source_tfroot_pos, "/");
      } else {
        tf_prefix_dir = source_dir;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
                            dep.publicationSourcePath = cp.fileReference(sourceJar.archiveFile.get().asFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    		return nil, err
    	}
    
    	var sourceVip string
    	var hostMac string
    	if isOverlay(hnsNetworkInfo) {
    		if !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.WinOverlay) {
    			return nil, fmt.Errorf("WinOverlay feature gate not enabled")
    		}
    		err = hcn.RemoteSubnetSupported()
    		if err != nil {
    			return nil, err
    		}
    		sourceVip = config.SourceVip
    		if len(sourceVip) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			sourceIP: "10.0.0.2",
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "external to NodePort with no endpoints",
    			sourceIP: testExternalClient,
    			destIP:   testNodeIP,
    			destPort: svcNodePort,
    			output:   "REJECT",
    		},
    		{
    			name:     "pod to LoadBalancer IP with no endpoints",
    			sourceIP: "10.0.0.2",
    			destIP:   svcLBIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top