Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 450 for eventual (0.25 sec)

  1. src/cmd/go/internal/gover/gover.go

    // Malformed versions compare less than well-formed versions and equal to each other.
    // The language version "1.21" compares less than the release candidate and eventual releases "1.21rc1" and "1.21.0".
    func Compare(x, y string) int {
    	return gover.Compare(x, y)
    }
    
    // Max returns the maximum of x and y interpreted as toolchain versions,
    // compared using Compare.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/operation.go

    	for _, release := range op.releaseDeferred {
    		err := op.pa.Release(release)
    		if err != nil {
    			errors = append(errors, err)
    		}
    	}
    
    	// Even on error, we don't rollback
    	// Problems should be fixed by an eventual reconciliation / restart
    	op.shouldRollback = false
    
    	if len(errors) == 0 {
    		return nil
    	}
    
    	return errors
    }
    
    // Allocates a port, and record it for future rollback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/ListSetTester.java

       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6409434">Sun bug 6409434</a> is fixed.
       * It's unclear whether nulls were to be permitted or forbidden, but presumably the eventual fix
       * will be to permit them, as it seems more likely that code would depend on that behavior than on
       * the other. Thus, we say the bug is in set(), which fails to support null.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java

       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6409434">Sun bug 6409434</a> is fixed.
       * It's unclear whether nulls were to be permitted or forbidden, but presumably the eventual fix
       * will be to permit them, as it seems more likely that code would depend on that behavior than on
       * the other. Thus, we say the bug is in add(), which fails to support null.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java

       * href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6409434">Sun bug 6409434</a> is fixed.
       * It's unclear whether nulls were to be permitted or forbidden, but presumably the eventual fix
       * will be to permit them, as it seems more likely that code would depend on that behavior than on
       * the other. Thus, we say the bug is in add(), which fails to support null.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    // Malformed versions compare less than well-formed versions and equal to each other.
    // The language version "1.21" compares less than the release candidate and eventual releases "1.21rc1" and "1.21.0".
    func compare(x, y string) int {
    	vx := parse(x)
    	vy := parse(y)
    
    	if c := cmpInt(vx.major, vy.major); c != 0 {
    		return c
    	}
    	if c := cmpInt(vx.minor, vy.minor); c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/mips/asm.go

    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		default:
    			return val, 0, false
    
    		case objabi.R_ADDRMIPS, objabi.R_ADDRMIPSU:
    			// set up addend for eventual relocation via outer symbol.
    			_, off := ld.FoldSubSymbolOffset(ldr, rs)
    			xadd := r.Add() + off
    			return applyrel(target.Arch, ldr, r.Type(), r.Off(), s, val, xadd), 1, true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/internal/gover/gover.go

    // Malformed versions compare less than well-formed versions and equal to each other.
    // The language version "1.21" compares less than the release candidate and eventual releases "1.21rc1" and "1.21.0".
    func Compare(x, y string) int {
    	vx := Parse(x)
    	vy := Parse(y)
    
    	if c := CmpInt(vx.Major, vy.Major); c != 0 {
    		return c
    	}
    	if c := CmpInt(vx.Minor, vy.Minor); c != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_asset_sinking_pass.cc

      main_func.setType(
          FunctionType::get(builder.getContext(), {tensor_string_type},
                            main_func.getFunctionType().getResults()));
      // Name of the main function for the eventual executable needs to be set.
      main_func->setAttr(kTfSavedModelExportedNamesAttr,
                         builder.getStrArrayAttr({func_name}));
      main_func->setAttr(
          kTfSavedModelInitializerTypeAttr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
      func_pm.addPass(tf_executor::CreateTFExecutorGraphPruningPass());
      func_pm.addPass(tf_executor::CreateTFExecutorIslandCoarseningPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top