Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 471 for setPath (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    		path:         root,
    		knownFormats: formats,
    		options:      options,
    	})
    }
    
    var _ validate.ValueValidator = (&ratchetingValueValidator{})
    
    func (r ratchetingValueValidator) SetPath(path string) {
    	// Do nothing
    	// Unused by kube-openapi
    }
    
    func (r ratchetingValueValidator) Applies(source interface{}, valueKind reflect.Kind) bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpResource.groovy

            server.allowGetOrHead(getPath(), file)
        }
    
        @Override
        void expectGet() {
            server.expectGet(getPath(), file)
        }
    
        void allowGetOrHead(String userName, String password) {
            server.allowGetOrHead(getPath(), userName, password, file)
        }
    
        void expectGet(String userName, String password) {
            server.expectGet(getPath(), userName, password, file)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "view", names);
        }
    
        public static Path getDictionaryPath(final String... names) {
            return getPath("WEB-INF/", "dict", names);
        }
    
        public static Path getThumbnailPath(final String... names) {
            return getPath("WEB-INF/", "thumbnails", names);
        }
    
        public static Path getSitePath(final String... names) {
            return getPath("WEB-INF/", "site", names);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParser.java

            if(uri.getPath() == null){
                uri = new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), "/", uri.getQuery(), uri.getFragment());
            }else if (!uri.getPath().endsWith("/") && !uri.getPath().endsWith(".html")) {
                uri = new URI(uri.getScheme(), uri.getUserInfo(), uri.getHost(), uri.getPort(), uri.getPath() + "/", uri.getQuery(), uri.getFragment());
    
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelGraph.java

            flattened.put(node.getPath(), node);
            if (node.isAtLeast(ModelNode.State.Discovered)) {
                doNotify(node);
            }
        }
    
        private void doNotify(ModelNodeInternal node) {
            notifying = true;
            try {
                notifyListeners(node, pathListeners.get(node.getPath()));
                notifyListeners(node, parentListeners.get(node.getPath().getParent()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectRegistry.java

        @Override
        public void addProject(T project) {
            T previous = projects.put(project.getPath(), project);
            if (previous != null) {
                throw new IllegalArgumentException(String.format("Multiple projects registered for path '%s'.", project.getPath()));
            }
            subProjects.put(project.getPath(), new HashSet<T>());
            addProjectToParentSubProjects(project);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:17 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelReferenceNode.java

            }
            if (LOGGER.isDebugEnabled()) {
                String targetPath = target == null ? null : "'" + target.getPath() + "'";
                LOGGER.debug("Project {} - Setting the target of model element '{}' to point at {}.",
                    modelRegistry.getProjectPath(), getPath(), targetPath);
            }
            this.target = (ModelNodeInternal) target;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectRegistryTest.java

            assertSame(expectedGetProject, projectRegistry.getProject(project.getPath()));
            assertEquals(expectedAllProjects, projectRegistry.getAllProjects(project.getPath()));
            assertEquals(expectedSubProjects, projectRegistry.getSubProjects(project.getPath()));
            assertSame(expectedGetProject, projectRegistry.getProject(project.getProjectDir()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 19 10:56:37 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                        throw new DictionaryException("Failed to update " + dictFile.getPath());
                    }
                } catch (final IOException e) {
                    throw new DictionaryException("Failed to update " + dictFile.getPath(), e);
                }
    
            }).orElse(() -> {
                throw new DictionaryException(dictFile.getPath() + " does not exist.");
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java

            if (!FileModelSource.class.equals(obj.getClass())) {
                return false;
            }
            FileModelSource other = (FileModelSource) obj;
            return getPath().equals(other.getPath());
        }
    
        @Override
        public int hashCode() {
            return getPath().hashCode();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top