Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,919 for need (0.18 sec)

  1. src/cmd/dist/buildtool.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Build toolchain using Go bootstrap version.
    //
    // The general strategy is to copy the source files we need into
    // a new GOPATH workspace, adjust import paths appropriately,
    // invoke the Go bootstrap toolchains go command to build those sources,
    // and then copy the binaries back.
    
    package main
    
    import (
    	"fmt"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    But Gradle also allows you to build a custom component (not a Java Library, not a Java Platform, not something supported natively by Gradle).
    
    To create a custom component, you first need to create an empty _adhoc_ component.
    At the moment, this is only possible via a plugin because you need to get a handle on the link:{javadocPath}/org/gradle/api/component/SoftwareComponentFactory.html[SoftwareComponentFactory] :
    
    .Injecting the software component factory
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    This doesn't mean that you need to verify every artifact at every stage, although doing so can help you quickly identify the source of a problem.
    You should focus on the critical output such as final reports and the artifacts that are published or deployed.
    +
    You will need to factor in some inherent differences in the build output that Gradle produces compared to Maven.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [[using_a_build_service_from_a_task]]
    == Using a build service in a task
    
    To use a build service from a task, you need to:
    
    1. Add a property to the task of type `Property<MyServiceType>`.
    2. Annotate the property with `@Internal` or `@ServiceReference` (since 8.0).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                throws ArtifactResolutionException {
            fireEvent(ResolutionListener.TEST_ARTIFACT, listeners, node);
    
            Object key = node.getKey();
    
            // TODO Does this check need to happen here? Had to add the same call
            // below when we iterate on child nodes -- will that suffice?
            if (managedVersions.containsKey(key)) {
                manageArtifact(node, managedVersions, listeners);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    	nodeSelectorsForServices map[host.Name]labels.Instance
    	// map of node name and its address+labels - this is the only thing we need from nodes
    	// for vm to k8s or cross cluster. When node port services select specific nodes by labels,
    	// we run through the label selectors here to pick only ones that we need.
    	// Only nodes with ExternalIP addresses are included in this map !
    	nodeInfoMap map[string]kubernetesNode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    		// TODO(gri) do we need this for Alias types?
    		if t.TypeArgs().Len() != n {
    			return Typ[Invalid] // error reported elsewhere
    		}
    
    		// already instantiated
    		// For each (existing) type argument determine if it needs
    		// to be substituted; i.e., if it is or contains a type parameter
    		// that has a type argument for it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    // loose accuracy, so we need to use this very very carefully.
    LogicalResult InsertRequantForReduceMean::matchAndRewrite(
        TFL::MeanOp mean_op, PatternRewriter& rewriter) const {
      auto input = mean_op.getInput();
      auto input_type = mlir::dyn_cast_or_null<ShapedType>(input.getType());
      if (!input_type) return failure();
    
      // Only need to do this for quantized input.
      auto input_quantized_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/go/types/subst.go

    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    		// TODO(gri) do we need this for Alias types?
    		if t.TypeArgs().Len() != n {
    			return Typ[Invalid] // error reported elsewhere
    		}
    
    		// already instantiated
    		// For each (existing) type argument determine if it needs
    		// to be substituted; i.e., if it is or contains a type parameter
    		// that has a type argument for it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    			// We need to keep nil checks even if they have no use.
    			// Also keep calls and values that have side effects.
    			return
    		}
    
    		// If the address of the auto reaches a memory or control
    		// operation not covered above then we probably need to keep it.
    		// We also need to keep autos if they reach Phis (issue #26153).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top