Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for hash_table (0.18 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    import org.gradle.internal.hash.Hashable;
    
    import javax.annotation.Nullable;
    
    /**
     * An immutable snapshot of the state of some Java object or object graph.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileSystemLocationFingerprint.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hashing;
    
    /**
     * An immutable fingerprint of some aspects of a file's metadata and content.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/Isolatable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.isolation;
    
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.snapshot.ValueSnapshot;
    
    import javax.annotation.Nullable;
    
    /**
     * Isolatable objects can return an isolated instance of the given type T from which this object was created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java

    import com.google.common.collect.testing.Helpers;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.features.MapFeature;
    import java.lang.reflect.Method;
    import java.util.Hashtable;
    import java.util.Map;
    import junit.framework.AssertionFailedError;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests {@link Map#merge}. Can't be invoked directly; please see {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h

               device == rhs.device && op == rhs.op;
      }
    
      // Make ResourceHandle hashable.
      friend ::llvm::hash_code hash_value(const ResourceHandle& resource_handle);
    
      StringRef container;
      StringRef name;
      StringRef device;
      Operation* op = nullptr;
    };
    
    // Make ResourceHandle hashable.
    inline ::llvm::hash_code hash_value(const ResourceHandle& resource_handle) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 03 19:26:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_duplicate_resource_ops.cc

        return "Merge resource ops that have the same shared name.";
      }
    
      void runOnOperation() override;
    };
    
    // Checks if the island op contains a resource op like Variable or Hashtable
    // and returns that resource op. Otherwise, returns null.
    Operation* GetResourceOp(Operation* op) {
      // Check if the island has only one block thats contain two ops, including
      // one resource op and one Yield op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. migrator.go

    	CurrentDatabase() string
    	FullDataTypeOf(*schema.Field) clause.Expr
    	GetTypeAliases(databaseTypeName string) []string
    
    	// Tables
    	CreateTable(dst ...interface{}) error
    	DropTable(dst ...interface{}) error
    	HasTable(dst interface{}) bool
    	RenameTable(oldName, newName interface{}) error
    	GetTables() (tableList []string, err error)
    	TableType(dst interface{}) (TableType, error)
    
    	// Columns
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/impl/tensor_spec.h

      tensorflow::DataType dtype;
    
      bool operator==(const TensorSpec& o) const {
        return dtype == o.dtype && shape.IsIdenticalTo(o.shape);
      }
    
      /// Overload AbslHashValue to make TensorSpec hashable.
      template <typename H>
      friend H AbslHashValue(H h, const TensorSpec& t) {
        return H::combine(std::move(h), t.shape.DebugString(), t.dtype);
      }
    };
    
    // Defined in `iostream.cc`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  9. tests/tests_test.go

    	}
    
    	if err = DB.AutoMigrate(allModels...); err != nil {
    		log.Printf("Failed to auto migrate, but got error %v\n", err)
    		os.Exit(1)
    	}
    
    	for _, m := range allModels {
    		if !DB.Migrator().HasTable(m) {
    			log.Printf("Failed to create table for %#v\n", m)
    			os.Exit(1)
    		}
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. cluster/gce/windows/configure.ps1

    # soon. ENABLE_STACKDRIVER_WINDOWS is added to indicate whether logging is enabled for windows nodes.
    function IsLoggingEnabled {
      param (
        [parameter(Mandatory=$true)] [hashtable]$KubeEnv
      )
    
      if ($KubeEnv.Contains('ENABLE_STACKDRIVER_WINDOWS') -and `
          ($KubeEnv['ENABLE_STACKDRIVER_WINDOWS'] -eq 'true')) {
        return $true
      } elseif ($KubeEnv.Contains('ENABLE_NODE_LOGGING') -and `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top