Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 738 for getPatch (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/ClasspathUtilTest.groovy

            when:
            def file = ClasspathUtil.getClasspathForResource(jarUrlWithResourceName, "Test.class")
    
            then:
            FILE.getPath() == file.getPath()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/23625")
        def "getClasspathForResource for jar scheme with prefix resource name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            scopeReferences.addNodeToScope(node.getPath(), node);
            scopeReferences.addNodeToScope(node.getPath().getParent(), node);
        }
    
        private void bound(Reference reference, ModelNodeInternal node) {
            ModelBinding binding = reference.binding;
            binding.onBind(node);
            reference.index.put(new NodeAtState(node.getPath(), binding.predicate.getState()), reference.owner);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/ConfigurationTargetIdentifier.java

                @Nullable
                @Override
                public String getTargetPath() {
                    return project.getProjectPath().getPath();
                }
    
                @Override
                public String getBuildPath() {
                    return project.getGradle().getIdentityPath().getPath();
                }
            };
        }
    
        public static ConfigurationTargetIdentifier of(final SettingsInternal settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

                    int diff = STRING_COMPARATOR.compare(task1.getPath().getName(), task2.getPath().getName());
                    if (diff != 0) {
                        return diff;
                    }
                    Path parent1 = task1.getPath().getParent();
                    Path parent2 = task2.getPath().getParent();
                    if (parent1 == null && parent2 != null) {
                        return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. pkg/volume/hostpath/host_path.go

    	err := validation.ValidatePathNoBacksteps(b.GetPath())
    	if err != nil {
    		return fmt.Errorf("invalid HostPath `%s`: %v", b.GetPath(), err)
    	}
    
    	if *b.pathType == v1.HostPathUnset {
    		return nil
    	}
    	if b.noTypeChecker {
    		return nil
    	} else {
    		return checkType(b.GetPath(), b.pathType, b.hu)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePattern.java

            Map<String, String> attributes = toAttributes(module, artifact);
            return getBase().getRoot().resolve(substituteTokens(getBase().getPath(), attributes));
        }
    
        @Override
        public ExternalResourceName toModulePath(ModuleIdentifier module) {
            String pattern = getBase().getPath();
            if (!pattern.endsWith(MavenPattern.M2_PATTERN)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/argposition_test.go

    					errorOccured = true
    				}
    				if errorOccured {
    					continue
    				}
    				gotMatch = true
    				expectedPositions[caseIndex].Visited = true
    			}
    
    			if !gotMatch {
    				v.t.Errorf(errorMessage.String())
    			}
    		}
    	}
    	return v
    }
    
    func TestArgumentsPositions(t *testing.T) {
    	testenv.MustHaveCGO(t)
    	testenv.MustHaveExec(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top