Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for subdir2 (0.5 sec)

  1. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/api/plugins/JvmTestSuitePluginIntegrationTest.groovy

            and:
            hasIncubatingLegend()
        }
    
        def "Test suites in different projects can use same test type"() {
            def subADir = createDir("subA")
            subADir.file("build.gradle") << """
                plugins {
                    id 'java'
                }
    
                ${mavenCentralRepository()}
    
                testing {
                    suites {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/GradleInstallation.java

        }
    
        private static void collectWithSubdirectories(File root, Collection<File> collection) {
            collection.add(root);
            File[] subDirs = root.listFiles(DIRECTORY_FILTER);
            if (subDirs != null) {
                for (File subdirectory : subDirs) {
                    collectWithSubdirectories(subdirectory, collection);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            and:
            def currentDir = tmpDir.createDir("sub/current")
            def subDir = tmpDir.createDir("sub")
            def settingsFile = subDir.createFile(settingsFilename)
            tmpDir.createFile(settingsFilename)
    
            expect:
            def layout = locator.getLayoutFor(currentDir, true)
            layout.rootDirectory == subDir
            layout.settingsDir == subDir
            layout.settingsFile == settingsFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/jsonnetfile.json

    {
      "version": 1,
      "dependencies": [
        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
              "subdir": "gen/grafonnet-latest"
            }
          },
          "version": "main"
        }
      ],
      "legacyImports": true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 266 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

          IsOk());
      ASSERT_THAT(env->RecursivelyCreateDir(absl::StrCat(*tmp_dir, "/subdir")),
                  IsOk());
    
      absl::StatusOr<std::vector<std::string>> children = ListDirectory(*tmp_dir);
      EXPECT_THAT(children, IsOk());
      EXPECT_THAT(children.value(), SizeIs(3));
      EXPECT_THAT(children.value(),
                  UnorderedElementsAre("subdir", "tmp_file1", "tmp_file2"));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/path_config.cc

      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;
      }
    
      // TF subdir, e.g. "c/ops" given output_dir "blah/blah/tensorflow/c/ops"
      std::vector<string> output_path_components =
          tensorflow::str_util::Split(output_dir, "/");
      auto output_tfroot_pos = std::find(output_path_components.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOutputFilesRepositoryTest.groovy

            repository.isGeneratedByGradle(file('build/outputs'))
            repository.isGeneratedByGradle(file('build/outputs/directory'))
            repository.isGeneratedByGradle(file('build/outputs/directory/subdir'))
            repository.isGeneratedByGradle(file('build/file'))
            repository.isGeneratedByGradle(file('build/file/other'))
            !repository.isGeneratedByGradle(file('build/other'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. hack/lib/init.sh

    # Where output goes.  We should avoid redefining these anywhere else.
    #
    # KUBE_OUTPUT: the root directory (absolute) where this build should drop any
    #     files (subdirs are encouraged).
    # KUBE_OUTPUT_BIN: the directory in which compiled binaries will be placed,
    #     under OS/ARCH specific subdirs
    # THIS_PLATFORM_BIN: a symlink to the output directory for binaries built for
    #     the current host platform (e.g. build/test tools).
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    				filteredSubMap, err = keepOrDeleteNullInObj(typedVal, keepNull)
    				if err != nil {
    					return nil, err
    				}
    
    				// If the returned filtered submap was empty, this is an empty patch for the entire subdict, so the key
    				// should not be set
    				if len(filteredSubMap) != 0 {
    					filteredMap[key] = filteredSubMap
    				}
    
    			case []interface{}, string, float64, bool, int64, nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    		return nil, "", errmsg
    	} else {
    		run(cmd, t)
    		return outfiles, outcfg, ""
    	}
    }
    
    func TestCoverWithCfg(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    
    	t.Parallel()
    
    	// Subdir in testdata that has our input files of interest.
    	tpath := filepath.Join("testdata", "pkgcfg")
    	dir := tempDir(t)
    	instdira := filepath.Join(dir, "insta")
    	if err := os.Mkdir(instdira, 0777); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top