Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for protected (0.05 seconds)

  1. .teamcity/.mvn/wrapper/maven-wrapper.jar

    extends AbstractPropertiesCo { public void ProjectPropertiesCom(); protected String getPropertyOption(); protected String getPropertyOptionDet(); protected String getPropertyOptionDes(); } org/apache/maven/wrapper/cli/SystemPropertiesComm.class package org.apache.maven.wrapper.cli; public synchronized class SystemPropertiesComm extends AbstractPropertiesCo { public void SystemPropertiesComm(); protected String getPropertyOption(); protected String getPropertyOptionDet(); protected String getPropertyOptionDes();...
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        //
    
        protected TransferListener getConsoleTransferListener(boolean printResourceNames) {
            return new SimplexTransferListener(new ConsoleMavenTransferListener(System.out, printResourceNames));
        }
    
        protected TransferListener getBatchTransferListener() {
            return new Slf4jMavenTransferListener();
        }
    
        protected void customizeContainer(PlexusContainer container) {}
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                }
            }
    
            protected void stop() {
                end = MonotonicClock.now();
                exec = exec.plus(Duration.between(resumed, end));
            }
    
            protected Duration wallTime() {
                return start != null && end != null ? Duration.between(start, end) : Duration.ZERO;
            }
    
            protected Duration execTime() {
                return exec;
            }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         */
        @Deprecated(since = "4.0.0")
        protected void setCompileSourceRoots(List<String> compileSourceRoots) {
            setSourceRootDirs(ProjectScope.MAIN, Language.JAVA_FAMILY, compileSourceRoots);
        }
    
        /**
         * @deprecated Replaced by {@link #addSourceRoot(ProjectScope, Language, String)}.
         */
        @Deprecated(since = "4.0.0")
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

        public ModelBuildingResult build(ModelBuildingRequest request) throws ModelBuildingException {
            return build(request, new LinkedHashSet<>());
        }
    
        @SuppressWarnings("checkstyle:methodlength")
        protected ModelBuildingResult build(ModelBuildingRequest request, Collection<String> importIds)
                throws ModelBuildingException {
            // phase 1
            DefaultModelBuildingResult result = new DefaultModelBuildingResult();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  6. tensorflow/c/c_api_test.cc

      for (size_t i = 0; i < v.size(); ++i) {
        (*ptrs)[i] = v[i].data();
        (*lens)[i] = v[i].size();
      }
    }
    
    class CApiColocationTest : public ::testing::Test {
     protected:
      CApiColocationTest() : s_(TF_NewStatus()), graph_(TF_NewGraph()) {}
    
      void SetUp() override {
        feed1_ = Placeholder(graph_, s_, "feed1");
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Mon Nov 17 00:00:38 GMT 2025
    - 97K bytes
    - Click Count (0)
  7. tensorflow/c/c_api_function_test.cc

      // Inherit the set of constructors
      using Base::pair;
    
      string ToString() const { return absl::StrCat(first, "->", second); }
    };
    
    class CApiFunctionTest : public ::testing::Test {
     protected:
      CApiFunctionTest()
          : s_(TF_NewStatus()),
            func_graph_(TF_NewGraph()),
            host_graph_(TF_NewGraph()),
            func_(nullptr) {}
    
      void SetUp() override {}
    
    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)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                d.getManagementKey(),
                                exclusion);
                    }
                }
            }
        }
    
        /**
         * @since 3.2.4
         */
        protected void validateDependencyVersion(ModelProblemCollector problems, Dependency d, String prefix) {
            validateStringNotEmpty(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (0)
  9. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrObjectLocked: {
    		Code:           "InvalidRequest",
    		Description:    "Object is WORM protected and cannot be overwritten",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidRetentionDate: {
    		Code:           "InvalidRequest",
    		Description:    "Date must be provided in ISO 8601 format",
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
  10. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            }
            mSession.getMavenSession().getRequest().setRootDirectory(root);
    
            return new PomTestWrapper(pomFile, projectBuilder.build(pomFile, config).getProject());
        }
    
        protected void assertModelEquals(PomTestWrapper pom, Object expected, String expression) {
            assertEquals(expected, pom.getValue(expression));
        }
    
        private static String createPath(List<String> elements) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 94.8K bytes
    - Click Count (0)
Back to Top