Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,535 for avoided (0.16 sec)

  1. tensorflow/BUILD

            1,
            2,
        ])
    )
    # copybara:comment_end
    
    # Config setting used when building for products
    # which requires restricted licenses to be avoided.
    config_setting(
        name = "no_lgpl_deps",
        define_values = {"__TENSORFLOW_NO_LGPL_DEPS__": "1"},
        visibility = ["//visibility:public"],
    )
    
    # Config setting that disables the default logger, only logging
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
      @SuppressWarnings("unchecked") // could probably be avoided with a forwarding Spliterator
      @SafeVarargs
      public static <T extends @Nullable Object> Stream<T> concat(Stream<? extends T>... streams) {
        // TODO(lowasser): consider an implementation that can support SUBSIZED
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // Find the FuncOp for the surrounding while loop body.
      func::FuncOp loop_body_func =
          (*forward_pass_ops.begin())->getParentOfType<func::FuncOp>();
    
      // merged_set will keep track of which ops are to be avoided when gather ops
      // for inclusion into the four extracted functions.
      llvm::SetVector<Operation*> merged_set;
    
      // Find the TPUReplicationMetadata and TPUCompilationResult ops and delete
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller.go

    			// have to do the API call below for every deleted pod
    			// to ensure that the pod really doesn't exist. With
    			// the cache, most of the time the pod will be recorded
    			// as deleted and the API call can be avoided.
    			if ec.deletedObjects.Has(reservedFor.UID) {
    				// We know that the pod was deleted. This is
    				// easy to check and thus is done first.
    				keepEntry = false
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        problems.add(
                                Severity.WARNING,
                                ModelProblem.Version.BASE,
                                "BOM imports from within reactor should be avoided",
                                dependency.getLocation(""));
                    }
                }
    
                final ModelBuilderResult importResult;
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    (As before, this fixup is only needed at most twice.)
    
    Now that q̂ = ⌊uₙuₙ₋₁uₙ₋₂ / vₙ₋₁vₙ₋₂⌋, as mentioned above it is at most one
    away from the correct q, and we've avoided doing any n-digit math.
    (If we need the new remainder, it can be computed as r̂·B + uₙ₋₂ - q̂·vₙ₋₂.)
    
    The final check u < q̂·v and the possible fixup must be done at full precision.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    	readinessFlags  *readinessFlags
    
    	// duration used for graceful shutdown.
    	shutdownDuration time.Duration
    
    	// internalStop is closed when the server is shutdown. This should be avoided as much as possible, in
    	// favor of AddStartFunc. This is only required if we *must* start something outside of this process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        problems.add(new ModelProblemCollectorRequest(Severity.WARNING, ModelProblem.Version.BASE)
                                .setMessage("BOM imports from within reactor should be avoided")
                                .setLocation(dependency.getLocation("")));
                    }
                }
    
                final ModelBuildingResult importResult;
                try {
    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. cmd/kubeadm/app/preflight/checks.go

    	// auto-detected and properly bound to an IPV4 address, this will make the cluster non-functional eventually. The case like this should be avoided by the validation instead,
    	// i.e. We don't care whether the input values for those parameters are set correctly here but if it's an IPV4 scoped CIDR or address we will add the file content check for IPV4,
    	// as does the IPV6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Configuration cache implementation packages now under `org.gradle.internal`
    
    References to Gradle types that are not part of the public API should be avoided, as their direct use is unsupported,
    and Gradle internal implementation classes may suffer breaking changes (or be renamed or removed) from one version to another without warning.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top