Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 297 for base_name (0.14 sec)

  1. src/debug/gosym/symtab_test.go

    	assertString(t, fmt.Sprintf("base of %q", s1.Name), s1.BaseName(), "set[int]")
    	assertString(t, fmt.Sprintf("base of %q", s2.Name), s2.BaseName(), "get")
    	assertString(t, fmt.Sprintf("base of %q", s3.Name), s3.BaseName(), "absDifference[c/d.orderedAbs[float64]]")
    	assertString(t, fmt.Sprintf("base of %q", s4.Name), s4.BaseName(), "testfunction[.shape.int]")
    }
    
    func TestRemotePackage(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            }
    
            String baseName;
            String ext = missing ? ".miss" : ".dep";
            Path trackingFile = null;
    
            String indent = "";
            ArrayList<String> trackingData = new ArrayList<>();
    
            if (collectStepTrace == null && plugin != null) {
                ext = ".plugin";
                baseName = plugin.getGroupId() + "_" + plugin.getArtifactId() + "_" + plugin.getVersion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/CompilerOutputFileNamingScheme.java

            return this;
        }
    
        public File map(File sourceFile) {
            final String baseName = FilenameUtils.removeExtension(sourceFile.getName());
            final String uniqueName = generateUniqueNameFor(sourceFile);
            File hashDirectory = new File(outputBaseFolder, uniqueName);
            return new File(hashDirectory, baseName + objectFileNameSuffix);
        }
    
        protected String generateUniqueNameFor(File sourceFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

         */
        public LocalDistribution getDistribution(WrapperConfiguration configuration) {
            String baseName = getDistName(configuration.getDistribution());
            String distName = removeExtension(baseName);
            String rootDirName = rootDirName(distName, configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileUtil.java

            }
            return extensions;
        }
    
        private static String[] getFileNames(String basename) {
            List<ScriptingLanguage> scriptingLanguages = ScriptingLanguages.all();
            String[] fileNames = new String[scriptingLanguages.size()];
            for (int i = 0; i < scriptingLanguages.size(); i++) {
                fileNames[i] = basename + scriptingLanguages.get(i).getExtension();
            }
            return fileNames;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppComponent.java

        private final String name;
        private final ConfigurableFileCollection privateHeaders;
        private final FileCollection privateHeadersWithConvention;
        private final Property<String> baseName;
        private final Names names;
        private final DefaultBinaryCollection<CppBinary> binaries;
        private final SetProperty<TargetMachine> targetMachines;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

      // Check pass filter first since it's cheaper.
      std::string pass_name = pass->getName().str();
      if (!MatchesFilter(pass_name, pass_filter_, /*exact_match=*/true)) {
        // No string in filter matches pass name.
        VLOG(1) << "Not logging invocation of pass `" << pass_name
                << "` because the pass name does not match any string in "
                   "`MLIR_BRIDGE_LOG_PASS_FILTER`";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. cluster/gce/gci/flexvolume_node_setup.sh

          filecount=$(cd "$driver_dir"; find . -mindepth 1 -maxdepth 1 -print0 | xargs -0 -n1 basename | wc -l)
          if [ "$filecount" -gt 1 ]; then
            echo "ERROR: Expected 1 file in the FlexVolume directory but found $filecount."
            exit 1
          fi
    
          driver_file=$(cd "$driver_dir"; find . -mindepth 1 -maxdepth 1 -print0 | xargs -0 -n1 basename | head -n 1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/LazyToRealisedModuleComponentResolveMetadataHelper.java

            for (AdditionalVariant additionalVariant : additionalVariants) {
                String baseName = additionalVariant.getBase();
                ImmutableAttributes attributes;
                ImmutableCapabilities capabilities;
                ImmutableList<? extends ComponentVariant.Dependency> dependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/encoding/json/stream_test.go

    	v any
    }
    
    func TestDecodeInStream(t *testing.T) {
    	tests := []struct {
    		CaseName
    		json      string
    		expTokens []any
    	}{
    		// streaming token cases
    		{CaseName: Name(""), json: `10`, expTokens: []any{float64(10)}},
    		{CaseName: Name(""), json: ` [10] `, expTokens: []any{
    			Delim('['), float64(10), Delim(']')}},
    		{CaseName: Name(""), json: ` [false,10,"b"] `, expTokens: []any{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top