Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,555 for specifiedFn (0.26 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

                throws ProjectBuildingException;
    
        /**
         * Builds a project descriptor for the specified artifact.
         *
         * @param projectArtifact The POM artifact to build the project from, must not be {@code null}.
         * @param allowStubModel A flag controlling the case of a missing POM artifact. If {@code true} and the specified
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

         * Resolves the transitive dependencies of the specified project.
         *
         * @param project         The project whose dependencies should be resolved, must not be {@code null}.
         * @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}.
         * @param session         The current build session, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type.
         */
        <T> NamedDomainObjectContainer<T> newNamedDomainObjectContainer(Class<T> elementType);
    
        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type created with the given factory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/TimeLimiter.java

      default <T> T newProxy(T target, Class<T> interfaceType, Duration timeout) {
        return newProxy(target, interfaceType, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
      /**
       * Invokes a specified Callable, timing out after the specified time limit. If the target method
       * call finishes before the limit is reached, the return value or a wrapped exception is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. pkg/apis/core/resource.go

    	return string(rn)
    }
    
    // CPU returns the CPU limit if specified.
    func (rl *ResourceList) CPU() *resource.Quantity {
    	return rl.Name(ResourceCPU, resource.DecimalSI)
    }
    
    // Memory returns the Memory limit if specified.
    func (rl *ResourceList) Memory() *resource.Quantity {
    	return rl.Name(ResourceMemory, resource.BinarySI)
    }
    
    // Storage returns the Storage limit if specified.
    func (rl *ResourceList) Storage() *resource.Quantity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 21:09:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls_test.go

    	}{
    		{
    			name:                       "user specified without tls",
    			mtlsCtx:                    userSupplied,
    			discoveryType:              cluster.Cluster_EDS,
    			tls:                        nil,
    			expectTransportSocket:      false,
    			expectTransportSocketMatch: false,
    		},
    		{
    			name:                       "user specified with istio_mutual tls",
    			mtlsCtx:                    userSupplied,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         * @throws ClassCastException if a domain object with the specified name exists with a different type
         */
        <U extends T> U maybeCreate(String name, Class<U> type) throws InvalidUserDataException;
    
        /**
         * Creates a domain object with the specified name and type, adds it to the container, and configures
         * it with the specified action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. pkg/kubelet/lifecycle/interfaces.go

    type PodAdmitHandlers []PodAdmitHandler
    
    // AddPodAdmitHandler adds the specified observer.
    func (handlers *PodAdmitHandlers) AddPodAdmitHandler(a PodAdmitHandler) {
    	*handlers = append(*handlers, a)
    }
    
    // PodSyncLoopHandlers maintains a list of handlers to pod sync loop.
    type PodSyncLoopHandlers []PodSyncLoopHandler
    
    // AddPodSyncLoopHandler adds the specified observer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        /**
         * Converts all line separators in the specified string to the specified line separator.
         */
        @Nullable
        public static String convertLineSeparators(@Nullable String str, String sep) {
            logDeprecation();
            return str == null ? null : replaceLineSeparatorsOf(str, sep);
        }
    
        /**
         * Converts all line separators in the specified non-null string to the Unix line separator {@code \n}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top