Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 277 for Cast (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          "ShapedType",
          "return resource_subtype().cast<ShapedType>();",
          [{ mlir::TF::ShapeAttr::get($_ctxt, $_self) }]>;
    
      let extraClassDeclaration = [{
        TensorType resource_subtype() { return resource_type().getSubtypes()[0]; }
    
        ResourceType resource_type() {
          return getElementTypeOrSelf(getResource()).cast<TF::ResourceType>();
        }
      }];
    
      let hasVerifier = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          // even though K doesn't explicitly implement Comparable.
          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    	},
    	ErrInvalidCopyPartRange: {
    		Code:           "InvalidArgument",
    		Description:    "The x-amz-copy-source-range value must be of the form bytes=first-last where first and last are the zero-based offsets of the first and last bytes to copy",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCopyPartRangeSource: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

     * limitations under the License.
     */
    package org.gradle.tooling.internal.consumer.parameters;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.Cast;
    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.tooling.Failure;
    import org.gradle.tooling.events.FinishEvent;
    import org.gradle.tooling.events.OperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

    import org.gradle.buildinit.InsecureProtocolOption;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    import org.gradle.groovy.scripts.internal.InitialPassStatementTransformer;
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.util.internal.GUtil;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    namespace {
    
    bool AreAllParentsGuaranteedConst(
        const Node& n,
        const absl::flat_hash_set<const Node*>& runtime_const_nodes) {
      if (n.type_string() == "GuaranteeConst") {
        // If the current node is itself a cast-to-const, no need
        // to look at the incoming edges.
        return true;
      }
    
      bool all_parents_const = true;
      bool atleast_one_non_control_edge = false;
      for (const Edge* in : n.in_edges()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

     *   <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is
     *       divided into segments, each of which does LRU internally)
     *   <li>time-based expiration of entries, measured since last access or last write
     *   <li>keys automatically wrapped in {@code WeakReference}
     *   <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference}
     *   <li>notification of evicted (or otherwise removed) entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.Factories;
    import org.gradle.internal.Factory;
    import org.gradle.internal.ImmutableActionSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		err := &ast.Field{Type: ast.NewIdent("error")}
    		l := gtype.Results.List
    		if len(l) == 0 {
    			l = []*ast.Field{err}
    		} else {
    			l = []*ast.Field{l[0], err}
    		}
    		t := new(ast.FuncType)
    		*t = *gtype
    		t.Results = &ast.FieldList{List: l}
    		gtype = t
    	}
    
    	// Go func declaration.
    	d := &ast.FuncDecl{
    		Name: ast.NewIdent(n.Mangle),
    		Type: gtype,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top