Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 766 for setPath (0.14 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/AmbiguousBindingReporter.java

        private static final Comparator<Provider> PROVIDER_COMPARATOR = new Comparator<Provider>() {
            @Override
            public int compare(Provider o1, Provider o2) {
                return o1.getPath().compareTo(o2.getPath());
            }
        };
    
        private final String referenceType;
        private final String referenceDescription;
        private final List<Provider> providers;
    
        public static class Provider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/taskfactory/TaskIdentity.java

        }
    
        public String getTaskPath() {
            return projectPath.getPath();
        }
    
        public String getProjectPath() {
            return projectPath.getParent().getPath();
        }
    
        public String getIdentityPath() {
            return identityPath.getPath();
        }
    
        public String getBuildPath() {
            return buildPath.getPath();
        }
    
        public Class<T> getTaskType() {
            return type;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 12:01:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelElementProjection.java

            return InstanceModelView.of(modelNode.getPath(), MODEL_ELEMENT_MODEL_TYPE, new ModelElement() {
                @Override
                public String toString() {
                    return getDisplayName();
                }
    
                @Override
                public String getName() {
                    return modelNode.getPath().getName();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskConfigurer.java

                } catch (CommandLineArgumentException e) {
                    //we expect that all options must be applicable for each task
                    throw new TaskConfigurationException(task.getPath(), "Problem configuring task " + task.getPath() + " from command line.", e);
                }
    
                for (OptionDescriptor commandLineOptionDescriptor : commandLineOptions) {
                    final String name = commandLineOptionDescriptor.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DefaultProjectComponentIdentifier.java

                displayName = "project " + identityPath.getPath();
            }
            return displayName;
        }
    
        @Override
        public BuildIdentifier getBuild() {
            return buildIdentifier;
        }
    
        @Override
        public Path getIdentityPath() {
            return identityPath;
        }
    
        @Override
        public String getProjectPath() {
            return projectPath.getPath();
        }
    
        public Path projectPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/BindingPredicate.java

            ModelType<?> type = reference.getType();
            return "{type: " + (type == null ? null : type.getDisplayName()) + ", path: " + getPath() + ", scope: " + getScope() + ", state: " + getState() + "}";
        }
    
        @Nullable
        @Override
        public ModelPath getPath() {
            return reference.getPath();
        }
    
        public ModelType<?> getType() {
            return reference.getType();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                }
                if (reference.getPath() != null) {
                    try {
                        ModelPath.validatePath(reference.getPath().getPath());
                    } catch (Exception e) {
                        problems.add(ruleDefinition, "The declared model element path '" + reference.getPath().getPath() + "' used for parameter " + (i + 1) + " is not a valid path", e);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

        def "construction from string"() {
            expect:
            path(':').getPath() == ':'
            path(':').is(Path.ROOT)
            Path.ROOT.getPath() == ':'
            path('a').getPath() == 'a'
            path('a:b:c').getPath() == 'a:b:c'
            path(':a').getPath() == ':a'
            path(':a:b').getPath() == ':a:b'
            path(':a:b:').getPath() == ':a:b'
        }
    
        def "equals and hashCode"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top