Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,347 for need (0.05 sec)

  1. architecture/networking/pilot.md

    `Cluster` is pushed, so this optimization is intentionally turned off in this specific case.
    
    Finally, we determine which subset of the type we need to generate. XDS has two modes - "State of the World (SotW)" and "Delta". In SotW, we generally need to generate all resources of the type, even if only one changed. Note that we actually need to *generate* all of them, typically, as we do not store previously generated resources (mostly because they are generated per-client). This also means...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

        }
    }
    
    /**
     * [binaryRoots] and [sharedBinaryRoots] are used to build stubs for symbols from binary libraries. They only need to be specified if
     * [shouldBuildStubsForBinaryLibraries] is true. In Standalone mode, binary roots don't need to be specified because library symbols are
     * provided via class-based deserialization, not stub-based deserialization.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

            if (Objects.equal(key, keys[next])) {
              int oldValue = values[next];
    
              if (last == UNSET) {
                // we need to update the root link from table[]
                table[tableIndex] = getNext(entries[next]);
              } else {
                // we need to update the link from the chain
                entries[last] = swapNext(entries[last], getNext(entries[next]));
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K 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. pkg/controller/deployment/sync.go

    		// If no other Progressing condition has been recorded and we need to estimate the progress
    		// of this deployment then it is likely that old users started caring about progress. In that
    		// case we need to take into account the first time we noticed their new replica set.
    		cond := deploymentutil.GetDeploymentCondition(d.Status, apps.DeploymentProgressing)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. 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)
  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. 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)
Back to top