Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,883 for Paths (0.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactResolver.java

                        Path path = result.getArtifact().getPath();
                        artifactManager.setPath(artifact, path);
                        paths.put(artifact, path);
                    }
                }
                return () -> paths;
            } catch (ArtifactResolutionException e) {
                throw new ArtifactResolverException("Unable to resolve artifact: " + e.getMessage(), e);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        @Nonnull
        @Override
        public String[] option(Iterable<? extends Path> paths) {
            return format(null, paths);
        }
    
        /**
         * Implementation shared with {@link Modular}.
         */
        final String[] format(String moduleName, Iterable<? extends Path> paths) {
            if (option == null) {
                throw new IllegalStateException("No option is associated to this path type.");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * in the order in which they are added.
         *
         * @param mergePaths The paths of manifests to be merged
         * @return this
         */
        ManifestMergeSpec from(Object... mergePaths);
    
        /**
         * Adds an action to be applied to each key-value tuple in a merge operation. If multiple merge paths are specified,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  5. pkg/volume/util/atomic_writer.go

    		// to avoid attempting to remove non-empty dirs
    		for subPath := file; subPath != ""; {
    			newPaths.Insert(subPath)
    			subPath, _ = filepath.Split(subPath)
    			subPath = strings.TrimSuffix(subPath, string(os.PathSeparator))
    		}
    	}
    	klog.V(5).Infof("%s: new paths:       %+v", w.targetDir, sets.List(newPaths))
    
    	result := paths.Difference(newPaths)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    }
    
    // WithAlwaysAllowGroups appends the list of paths to AlwaysAllowGroups
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowGroups(groups ...string) *DelegatingAuthorizationOptions {
    	s.AlwaysAllowGroups = append(s.AlwaysAllowGroups, groups...)
    	return s
    }
    
    // WithAlwaysAllowPaths appends the list of paths to AlwaysAllowPaths
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowPaths(paths ...string) *DelegatingAuthorizationOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                            <label for="paths" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.paths"/></label>
                                            <div class="col-sm-10">
                                                <la:text styleId="paths" property="paths" styleClass="form-control"/>
                                            </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphPathResolver.java

                }
            }
    
            List<List<ComponentIdentifier>> paths = new ArrayList<>();
            for (DependencyGraphComponent version : directDependees) {
                List<ComponentIdentifier> path = shortestPaths.get(version);
                paths.add(path);
            }
            return paths;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top