Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for 0F (0.01 sec)

  1. tensorflow/c/c_api_test.cc

      ASSERT_EQ(4, TF_TensorByteSize(t));
      float* p = static_cast<float*>(TF_TensorData(t));
      *f = *p;
    }
    
    TEST_F(CApiGradientsTest, MultipleCallsToAddGradients) {
      const float X = 3.0f, Y = 7.0f;
      TF_Operation* x = Placeholder(graph_, s_, "x", TF_FLOAT);
      TF_Operation* y = Placeholder(graph_, s_, "y", TF_FLOAT);
      TF_Operation* xy = Mul(x, y, graph_, s_, "xy");
      TF_Output dxy_dx, dxy_dy;
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Dec 27 12:18:10 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

        if (table instanceof Map) {
          return (Map<K, V>) table;
        }
        return null;
      }
    
      Map<K, V> createHashFloodingResistantDelegate(int tableSize) {
        return new LinkedHashMap<>(tableSize, 1.0f);
      }
    
      @CanIgnoreReturnValue
      Map<K, V> convertToHashFloodingResistantImplementation() {
        Map<K, V> newDelegate = createHashFloodingResistantDelegate(hashTableMask() + 1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactHashMap.java

        if (table instanceof Map) {
          return (Map<K, V>) table;
        }
        return null;
      }
    
      Map<K, V> createHashFloodingResistantDelegate(int tableSize) {
        return new LinkedHashMap<>(tableSize, 1.0f);
      }
    
      @CanIgnoreReturnValue
      Map<K, V> convertToHashFloodingResistantImplementation() {
        Map<K, V> newDelegate = createHashFloodingResistantDelegate(hashTableMask() + 1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

      @get:JvmName("queryParameterNames")
      val queryParameterNames: Set<String>
        get() {
          if (queryNamesAndValues == null) return emptySet()
          val result = LinkedHashSet<String>(queryNamesAndValues.size / 2, 1.0F)
          for (i in 0 until queryNamesAndValues.size step 2) {
            result.add(queryNamesAndValues[i]!!)
          }
          return result.unmodifiable()
        }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top