Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for appendPath (0.06 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                Object childDirectory = context.get(CHILD_DIRECTORY);
                Object childPathAdjustment = context.get(CHILD_PATH_ADJUSTMENT);
    
                if (StringUtils.isBlank(parentUrl)
                        || childDirectory == null
                        || childPathAdjustment == null
                        || !appendPath) {
                    return parentUrl;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

        protected Object getExclusionKey(Exclusion exclusion) {
            return exclusion.getGroupId() + ':' + exclusion.getArtifactId();
        }
    
        protected String extrapolateChildUrl(String parentUrl, boolean appendPath, Map<Object, Object> context) {
            return parentUrl;
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  3. tensorflow/c/c_api_function_test.cc

      tensorflow::FunctionDef fdef;
      ASSERT_TRUE(GetFunctionDef(func_, &fdef));
      ASSERT_EQ(string("long_func_name"), fdef.signature().name());
    }
    
    TEST_F(CApiFunctionTest, AppendHash) {
      DefineFunction("func_name_base", &func_, "Return something",
                     /*append_hash=*/true);
      tensorflow::FunctionDef fdef;
      ASSERT_TRUE(GetFunctionDef(func_, &fdef));
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Nov 17 00:00:38 GMT 2025
    - 63.6K bytes
    - Click Count (1)
Back to Top