Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,384 for Resource (0.3 sec)

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

                MavenProject project, String resourceDirectory, List<String> includes, List<String> excludes) {
            Resource resource = new Resource();
            resource.setDirectory(resourceDirectory);
            resource.setIncludes(includes);
            resource.setExcludes(excludes);
    
            project.addResource(resource);
        }
    
        public void addTestResource(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.ListResultBean;
    
    public class FavoriteLogService {
        @Resource
        protected SystemHelper systemHelper;
    
        @Resource
        protected UserInfoBhv userInfoBhv;
    
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ResourceFilter.java

     */
    package jcifs;
    
    
    /**
     * Filter based on a resource instance
     * 
     * @author mbechler
     *
     */
    public interface ResourceFilter {
    
        /**
         * 
         * @param resource
         * @return whether the given resource should be included
         * @throws CIFSException
         */
        public boolean accept ( SmbResource resource ) throws CIFSException;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/b/0.1/b-0.1.pom

      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 02 16:35:38 GMT 2010
    - 1.6K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/repo/org/apache/maven/its/mng3906/a/0.1/a-0.1.pom

      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>.</directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 02 16:35:38 GMT 2010
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

        protected static final String APP_TYPE = "JOB";
    
        @Resource
        private TimeManager timeManager;
    
        @Resource
        private FessConfig fessConfig;
    
        @Resource
        private AccessContextLogic accessContextLogic;
    
        @Resource
        private ScheduledJobService scheduledJobService;
    
        @Resource
        private SystemHelper systemHelper;
    
        @Resource
        private JobHelper jobHelper;
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  7. internal/arn/arn.go

    	if len(res) != 2 {
    		err = errors.New("invalid ARN - resource does not contain a \"/\"")
    		return
    	}
    
    	if res[0] != string(arnResourceTypeRole) {
    		err = errors.New("invalid ARN: resource type is invalid")
    		return
    	}
    
    	if !validResourceIDRegex.MatchString(res[1]) {
    		err = fmt.Errorf("invalid resource ID: %s", res[1])
    		return
    	}
    
    	arn = ARN{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 08:31:34 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // Currently only valid for Resource metric source type
      // +optional
      optional int32 averageUtilization = 4;
    }
    
    // MetricValueStatus holds the current value for a metric
    message MetricValueStatus {
      // value is the current value of the metric (as a quantity).
      // +optional
      optional k8s.io.apimachinery.pkg.api.resource.Quantity value = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  9. istioctl/pkg/internaldebug/internal-debug.go

    	// Gather the statuses before printing so they may be sorted
    	mappedResp := map[string]string{}
    	for id, dr := range drs {
    		for _, resource := range dr.Resources {
    			if s.InternalDebugAllIstiod {
    				mappedResp[id] = string(resource.Value) + "\n"
    			} else {
    				_, _ = s.Writer.Write(resource.Value)
    				_, _ = s.Writer.Write([]byte("\n"))
    			}
    		}
    	}
    	if len(mappedResp) > 0 {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    // normal per-pod metrics using the "pods" source. Only one "target" type
    // should be set.
    message ContainerResourceMetricSource {
      // name is the name of the resource in question.
      optional string name = 1;
    
      // targetAverageUtilization is the target value of the average of the
      // resource metric across all relevant pods, represented as a percentage of
      // the requested value of the resource for the pods.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
Back to top