Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for child7 (0.23 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            }
    
            private <P> ActivationFrame nextFrame(String property, Function<P, InputLocationTracker> child) {
                @SuppressWarnings("unchecked")
                final Optional<P> parent = (Optional<P>) stk.peek().parent;
                return new ActivationFrame(property, parent.map(child));
            }
    
            @Override
            public Activation transformActivation(Activation target) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         *
         * @param url
         *            A URL string
         * @throws MalformedURLException
         *             If the <code>parent</code> and <code>child</code> parameters
         *             do not follow the prescribed syntax
         */
        @Deprecated
        public SmbFile ( String url ) throws MalformedURLException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        if (moduleFile == null) {
                            ModelProblem problem = new org.apache.maven.internal.impl.model.DefaultModelProblem(
                                    "Child module " + moduleFile + " of " + pomFile + " does not exist",
                                    ModelProblem.Severity.ERROR,
                                    ModelProblem.Version.BASE,
                                    model,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        public String absoluteProjectPath(String path) {
            return getProjectPath().absolutePath(path);
        }
    
        @Override
        public Path identityPath(String name) {
            return getIdentityPath().child(name);
        }
    
        @Override
        @Nonnull
        public Path getProjectPath() {
            return owner.getProjectPath();
        }
    
        @Override
        public ModelContainer<ProjectInternal> getModel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	// If a Git subprocess forks a child into the background to cache a new connection,
    	// that child keeps stdout/stderr open. After the Git subprocess exits,
    	// os/exec expects to be able to read from the stdout/stderr pipe
    	// until EOF to get all the data that the Git subprocess wrote before exiting.
    	// The EOF doesn't come until the child exits too, because the child
    	// is holding the write end of the pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * This test implements option 2, "no", which basically means that attributes of a configuration
         * are never inherited.
         *
         * Rationale: if we make configuration inherit attributes, then it means that 2 "child" configurations
         * could easily have the same set of attributes. It also means that just adding a configuration could
         * make resolution fail if we decide that 2 configurations with the same attributes lead to an error.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            Model parent = lineage.get(lineage.size() - 1);
            for (int i = lineage.size() - 2; i >= 0; i--) {
                Model child = lineage.get(i);
                parent = inheritanceAssembler.assembleModelInheritance(child, parent, request, problems);
            }
            return parent;
        }
    
        private Map<String, Activation> getProfileActivations(Model model) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    lineage.get(lineage.size() - 1).getDelegate();
            for (int i = lineage.size() - 2; i >= 0; i--) {
                Model child = lineage.get(i);
                parent = inheritanceAssembler.assembleModelInheritance(child.getDelegate(), parent, request, problems);
            }
            return new Model(parent);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // number of new results after lifting.
      int num_new_results_;
    };
    
    // Analyzes resources that are read or written within attached regions.
    LogicalResult RegionResourceHoister::Analyze() {
      // Hoisting of child regions might have created opportunity for store-load
      // forwarding.
      for (Region& region : op_->getRegions()) {
        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    slf4jLogger.error(line);
                }
    
                currentColor = nextColor;
            }
    
            indent += "  ";
    
            for (ExceptionSummary child : summary.getChildren()) {
                logSummary(child, references, indent, showErrors);
            }
        }
    
        private static final Pattern LAST_ANSI_SEQUENCE = Pattern.compile("(\u001B\\[[;\\d]*[ -/]*[@-~])[^\u001B]*$");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top