Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,535 for avoided (0.29 sec)

  1. src/cmd/compile/internal/walk/order.go

    // in n to avoid string allocations for keys in map lookups.
    // Returns a bool that signals if a modification was made.
    //
    // For:
    //
    //	x = m[string(k)]
    //	x = m[T1{... Tn{..., string(k), ...}}]
    //
    // where k is []byte, T1 to Tn is a nesting of struct and array literals,
    // the allocation of backing bytes for the string can be avoided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== Forced dependencies
    
    Forcing dependency versions using `force = true` on a first-level dependency has been deprecated.
    
    Force has both a semantic and ordering issue which can be avoided by using a <<rich_versions.adoc#rich-version-constraints, strict version constraint>>.
    
    ==== Search upwards related APIs in `StartParameter` have been deprecated
    
    In Gradle 5.0, we removed the `--no-search-upward` CLI parameter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    				if b.Func.pass.debug > 0 {
    					b.Func.Warnl(v.Pos, "Proved %v bounded", v.Op)
    				}
    			}
    		case OpDiv16, OpDiv32, OpDiv64, OpMod16, OpMod32, OpMod64:
    			// On amd64 and 386 fix-up code can be avoided if we know
    			//  the divisor is not -1 or the dividend > MinIntNN.
    			// Don't modify AuxInt on other architectures,
    			// as that can interfere with CSE.
    			// TODO: add other architectures?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    no forced requirement to upgrade to latest release upon every release. Some release may not be relevant to your setup, avoid upgrading production environments unnecessarily. - If you plan to use `mc admin update`, MinIO process must have write access to the parent directory where the binary is present on the host system. - `mc admin update` is not supported and should be avoided in kubernetes/container environments, please upgrade containers by upgrading relevant container images. - **We do not recommend...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// make it schedulable.
    	//
    	// This mechanism avoids the following problem:
    	// - Pod A triggers allocation for claim X.
    	// - Pod B shares access to that claim and gets scheduled because
    	//   the claim is assumed to be allocated.
    	// - PreBind for pod B is called first, tries to update reservedFor and
    	//   fails because the claim is not really allocated yet.
    	//
    	// We could avoid the ordering problem by allowing either pod A or pod B
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find the FuncOp for the surrounding while loop body.
      auto 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
    - 92.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For more information, see <<tar_tree_no_backing_file>>.
    
    ==== Using invalid Java toolchain specifications
    
    Usage of invalid Java toolchain specifications is no longer supported.
    Related build errors can be avoided by making sure that language version is set on all toolchain specifications.
    See <<toolchains#sec:configuring_toolchain_specifications,user manual>> for more information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    # ADR-0002 - Avoid using Java serialization
    
    ## Date
    
    2012-12-01
    
    ## Context
    
    In Gradle we often need to serialize in-memory objects for caching, or to transmit them across process barriers, etc.
    Java serialization is one way to implement this, however, despite its simplicity of implementation, it has several drawbacks:
    
    - **Performance:**
    Java's built-in serialization mechanism is often slower compared to other serialization solutions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    //
    // If a dest argument has type *[]byte, Scan saves in that argument a
    // copy of the corresponding data. The copy is owned by the caller and
    // can be modified and held indefinitely. The copy can be avoided by
    // using an argument of type [*RawBytes] instead; see the documentation
    // for [RawBytes] for restrictions on its use.
    //
    // If an argument has type *interface{}, Scan copies the value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: avoided uploading a defaulted flag value "--authorization-mode=Node,RBAC" for the kube-apiserver in the ClusterConfiguration stored in the "kube-system/kubeadm-config" ConfigMap. "Node,RBAC" are already the kubeadm defaults for this flag, so this action is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top