Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of about 10,000 for lost (1.21 sec)

  1. src/strconv/atof.go

    	// For rounding, we need two more, where the bottom bit represents
    	// whether that bit or any later bit was non-zero.
    	// (If the mantissa has already lost non-zero bits, trunc is true,
    	// and we OR in a 1 below after shifting left appropriately.)
    	for mantissa != 0 && mantissa>>(flt.mantbits+2) == 0 {
    		mantissa <<= 1
    		exp--
    	}
    	if trunc {
    		mantissa |= 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  2. docs/bucket/replication/README.md

    #### Rationale
    
    - SSE-C requires application to remember the keys for all GET/PUT operations, any unfortunate loss of keys would automatically mean the objects cannot be accessed anymore.
    - SSE-C is hardly adopted by most widely used applications, applications prefer server to manage the keys via SSE-KMS or SSE-S3.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. src/runtime/map_test.go

    				m[float64(i)] += i
    			}
    			growflag = false
    		}
    		if k != k {
    			cnt++
    			s |= v
    		}
    	}
    	if cnt != 3 {
    		t.Error("NaN keys lost during grow")
    	}
    	if s != 7 {
    		t.Error("NaN values lost during grow")
    	}
    }
    
    type FloatInt struct {
    	x float64
    	y int
    }
    
    func TestGrowWithNegativeZero(t *testing.T) {
    	negzero := math.Copysign(0.0, -1.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeToken.java

       * similar but different from {@link Class#getGenericInterfaces()}. For example, {@code new
       * TypeToken<List<String>>() {}.getGenericInterfaces()} will return a list that contains {@code
       * new TypeToken<Iterable<String>>() {}}; while {@code List.class.getGenericInterfaces()} will
       * return an array that contains {@code Iterable<T>}, where the {@code T} is the type variable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication-handlers.go

    // qualify for replication and re-sync the object(s) to target, provided ExistingObjectReplication is
    // enabled for the qualifying rule. This API is a MinIO only extension provided for situations where
    // remote target is entirely lost,and previously replicated objects need to be re-synced. If resync is
    // already in progress it returns an error
    func (api objectAPIHandlers) ResetBucketReplicationStartHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/func.go

    	funcNeverReturns             // function never returns (in most cases calls panic(), os.Exit(), or equivalent)
    	funcOpenCodedDeferDisallowed // can't do open-coded defers
    	funcClosureResultsLost       // closure is called indirectly and we lost track of its results; used by escape analysis
    	funcPackageInit              // compiler emitted .init func for package
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Cache.kt

      taskRunner: TaskRunner,
    ) : Closeable, Flushable {
      /** Create a cache of at most [maxSize] bytes in [directory]. */
      constructor(
        fileSystem: FileSystem,
        directory: Path,
        maxSize: Long,
      ) : this(
        directory,
        maxSize,
        fileSystem,
        TaskRunner.INSTANCE,
      )
    
      /** Create a cache of at most [maxSize] bytes in [directory]. */
      constructor(directory: File, maxSize: Long) : this(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            assert op.children.findAll { it.hasDetailsOfType(ExecuteListenerBuildOperationType.Details) }.size() == expectedChildren
        }
    
        private static List<BuildOperationRecord> verifyHasChildren(BuildOperationRecord op, long expectedApplicationId, String sourceName, List<ExpectedOperation> expectedOps) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeToken.java

       * similar but different from {@link Class#getGenericInterfaces()}. For example, {@code new
       * TypeToken<List<String>>() {}.getGenericInterfaces()} will return a list that contains {@code
       * new TypeToken<Iterable<String>>() {}}; while {@code List.class.getGenericInterfaces()} will
       * return an array that contains {@code Iterable<T>}, where the {@code T} is the type variable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

                signalPassFailure();
                return WalkResult::interrupt();
              }
              // If islands were merged, restart scanning the block from the
              // beginning as we lost track of where to continue.
              if (changed) break;
            }
          }
    
          // Need to remove the redundant `Identity` ops in the same cluster.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top