Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,914 for based (0.16 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return The one-based index of the line containing the problem or a non-positive value if unknown.
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblem.java

         *            {@link Severity#ERROR}.
         * @param source The source of the problem, may be {@code null}.
         * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown.
         * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

         *            {@link ModelProblem.Severity#ERROR}.
         * @param source The source of the problem, may be {@code null}.
         * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown.
         * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

         *
         * @param type The concrete type of element in the container (must implement {@link Named})
         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
         * @param collectionCallbackActionDecorator the decorator for collection callback action execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return the one-based index of the line containing the problem or a non-positive value if unknown
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.OutputDirectory;
    
    import java.io.File;
    
    /**
     * A directory based report to be created.
     */
    public interface DirectoryReport extends ConfigurableReport {
    
        /**
         * Returns the entry point of a directory based Report
         *
         * This can be the index.html file in a HTML report
         *
         * @return the entry point of the report or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. pkg/securitycontext/fake.go

    */
    
    package securitycontext
    
    import (
    	"k8s.io/api/core/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // ValidSecurityContextWithContainerDefaults creates a valid security context provider based on
    // empty container defaults.  Used for testing.
    func ValidSecurityContextWithContainerDefaults() *v1.SecurityContext {
    	priv := false
    	defProcMount := v1.DefaultProcMount
    	return &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 20 19:43:52 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/experimental/public/function_metadata.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // FunctionMetadata stores additional function information, including
    // optional signaturedef feeds/fetches (for TF1-based ConcreteFunctions),
    // a valid function path (for TF2-based ConcreteFunctions), and
    // the types + number of inputs and outputs.
    class FunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class ConcreteFunction;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    //
    // Informer/Lister classes are thin wrappers providing a type-safe interface
    // over regular interface{}-based Informers/Listers
    //
    // Controller[T] provides a reusable way to reconcile objects out of an informer
    // using the tried and true controller design pattern found all over k8s
    // codebase based upon syncFunc/reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainer.java

    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Consumer;
    
    /**
     * Container for registered ComponentMetadataRules, either class based or closure / action based.
     */
    class ComponentMetadataRuleContainer implements Iterable<MetadataRuleWrapper> {
        private final List<MetadataRuleWrapper> rules = Lists.newArrayListWithExpectedSize(10);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top