Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for defs (0.1 sec)

  1. README.md

    3.  Guava has one dependency that is needed for linkage at runtime:
        `com.google.guava:failureaccess:1.0.2`. It also has
        [some annotation-only dependencies][guava-deps], which we discuss in more
        detail at that link.
    
    4.  Serialized forms of ALL objects are subject to change unless noted
        otherwise. Do not persist these and assume they can be read by a future
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. bin/update_deps.sh

    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR=$(dirname "${SCRIPTPATH}")
    cd "${ROOTDIR}"
    
    # Get the sha of top commit
    # $1 = repo
    function getSha() {
      git ls-remote "https://github.com/istio/${1}.git" "refs/heads/${UPDATE_BRANCH}" | cut -f 1
    }
    
    make update-common
    
    export GO111MODULE=on
    go get -u "istio.io/api@${UPDATE_BRANCH}"
    go get -u "istio.io/client-go@${UPDATE_BRANCH}"
    go mod tidy
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/function/function.cc

        pass_options.default_device = options.default_device;
      }
      if (!options.force_data_format.empty()) {
        pass_options.force_data_format = options.force_data_format;
      }
      // TODO(tfrt-devs): Current MaxPoolingOp only supports NHWC on device type
      // CPU. Enable this layout optimization after we introduce TFRT native ops
      // for training.
      if (absl::StrContains(pass_options.default_device, "CPU")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 08:13:15 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassAnalysis.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.deps;
    
    import com.google.common.collect.ImmutableSet;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.gradle.api.internal.cache.StringInterner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/internal/dag/parse.go

    		for _, less := range bad.less {
    			for _, def := range bad.def {
    				if g.HasEdge(def, less) {
    					errorf("graph edge assertion failed: %s !< %s", less, def)
    				}
    			}
    		}
    	}
    
    	if len(errors) > 0 {
    		return nil, fmt.Errorf("%s", strings.Join(errors, "\n"))
    	}
    
    	return g, nil
    }
    
    // A rule is a line in the DAG language where "less < def" or "less !< def".
    type rule struct {
    	less []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. internal/kms/secret-key.go

    	keyID, b64Key := v[0], v[1]
    	key, err := base64.StdEncoding.DecodeString(b64Key)
    	if err != nil {
    		return nil, err
    	}
    	return NewBuiltin(keyID, key)
    }
    
    // NewBuiltin returns a single-key KMS that derives new DEKs from the
    // given key.
    func NewBuiltin(keyID string, key []byte) (*KMS, error) {
    	if len(key) != 32 {
    		return nil, errors.New("kms: invalid key length " + strconv.Itoa(len(key)))
    	}
    	return &KMS{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

          /*legacy_graph_export=*/false));
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateLaunchToDeviceAttributePass(
          /*legacy_graph_export=*/false));
    
      // Do a single pass to encode necessary control deps in the IR according to
      // the results of side effect analysis.
      pm.addPass(
          mlir::tf_executor::CreateTFExecutorUpdateControlDependenciesPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

        op_attr_array.push_back(builder.getArrayAttr({key, value}));
      }
    
      result.attributes.push_back(
          builder.getNamedAttr("op_attrs", builder.getArrayAttr(op_attr_array)));
    
      // TODO(tfrt-devs): support func attributes in tfrt_fallback_sync.
      if (options.has_func_attr) {
        llvm::SmallVector<mlir::Attribute, 4> op_func_attr_array;
        for (const auto &key_value : op_func_attrs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top