Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 661 for getHome (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    		if len(namedRule.ResourceNames) == 0 {
    			return true, matchResource, matchKind, nil
    		}
    		// TODO: GetName() can return an empty string if the user is relying on
    		// the API server to generate the name... figure out what to do for this edge case
    		name := attr.GetName()
    		for _, matchedName := range namedRule.ResourceNames {
    			if name == matchedName {
    				return true, matchResource, matchKind, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultIsolatedProject.java

        public DefaultIsolatedProject(ProjectInternal project, ProjectInternal rootProject) {
            this.project = project;
            this.rootProject = rootProject;
        }
    
        @Override
        public String getName() {
            return project.getName();
        }
    
        @Override
        public String getPath() {
            return project.getPath();
        }
    
        @Override
        public String getBuildTreePath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

                throw new InvalidUserCodeException("Cannot add artifacts during filtering");
            }
    
            @Override
            public String getName() {
                return outgoingConfiguration.getName();
            }
    
            @Override
            public Optional<String> getDescription() {
                return Optional.ofNullable(outgoingConfiguration.getDescription());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

    import org.apache.catalina.WebResource;
    import org.apache.catalina.webresources.StandardRoot;
    
    public class FessWebResourceRoot extends StandardRoot {
        private static final Logger logger = Logger.getLogger(FessWebResourceRoot.class.getName());
    
        public FessWebResourceRoot(final Context context) {
            super(context);
        }
    
        @Override
        protected void processWebInfLib() throws LifecycleException {
            super.processWebInfLib();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java

                                        return properties;
                                    } else if ("getUserProperties".equals(method.getName())) {
                                        return Map.of();
                                    } else if ("getService".equals(method.getName())) {
                                        if (args[0] == ToolchainsXmlFactory.class) {
                                            return toolchainsXmlFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

     */
    
    package org.gradle.performance.results.report;
    
    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestDescriptor.java

        @Override
        public String toString() {
            return "Test " + getName() + "(" + className + ")";
        }
    
        @Override
        public boolean isComposite() {
            return false;
        }
    
        @Override
        public String getClassName() {
            return className;
        }
    
        @Override
        public String getMethodName() {
            return getName();
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

            TarArchiveOutputStream tarOutput = new TarArchiveOutputStream(output.openOutput());
            for (DataSource input : inputs) {
                TarArchiveEntry entry = new TarArchiveEntry(input.getName());
                entry.setSize(input.getLength());
                tarOutput.putArchiveEntry(entry);
                PackerUtils.packEntry(input, tarOutput, buffer);
                tarOutput.closeArchiveEntry();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/internal/operations/BuildOperationTypes.java

        }
    
        private static <T extends BuildOperationType<?, ?>> Class<?> extract(Class<T> type, int index) {
            assert BuildOperationType.class.isAssignableFrom(type) : type.getName() + " is not a " + BuildOperationType.class.getName();
    
            for (Type superType : type.getGenericInterfaces()) {
                if (superType instanceof ParameterizedType && ((ParameterizedType) superType).getRawType().equals(BuildOperationType.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemId.java

        public DefaultProblemId(String id, String displayName, ProblemGroup parent) {
            this.id = id;
            this.displayName = displayName;
            this.parent = parent;
        }
    
        @Override
        public String getName() {
            return id;
        }
    
        @Override
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
        public ProblemGroup getGroup() {
            return parent;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:38:33 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top