Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for continued (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Eliminate _replication_info and other attributes from ops in a cluster";
    
      let description = [{
        This pass eliminate `_replication_info` and `device` attribute on operations
        that are contained in a tf_device.cluster op.
      }];
    
      let constructor = "TFTPU::CreateTPUClusterCleanupAttributesPass()";
    }
    
    def TPUSpaceToDepthPass : Pass<"tf-tpu-space-to-depth-pass", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	VT0                                         = 0x0
    	WAKE_MAGIC                                  = 0x20
    	WALL                                        = 0x40000000
    	WCLONE                                      = 0x80000000
    	WCONTINUED                                  = 0x8
    	WDIOC_SETPRETIMEOUT                         = 0xc0045708
    	WDIOC_SETTIMEOUT                            = 0xc0045706
    	WDIOF_ALARMONLY                             = 0x400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        doLast { }
                    }
                }
            """
    
            when:
            fails "badTask", "--continue"
    
            then:
            ['app', 'lib', 'util'].withIndex()
                .each { appType, index ->
                    def reserved = file("${appType}/build/${forbiddenPath}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		t.Fatalf("ColumnTypes: %v", err)
    	}
    
    	types := make([]reflect.Type, len(tt))
    	for i, tp := range tt {
    		st := tp.ScanType()
    		if st == nil {
    			t.Errorf("scantype is null for column %q", tp.Name())
    			continue
    		}
    		types[i] = st
    	}
    	values := make([]any, len(tt))
    	for i := range values {
    		values[i] = reflect.New(types[i]).Interface()
    	}
    	ct := 0
    	for rows.Next() {
    		err = rows.Scan(values...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    std::vector<std::pair<string, string>> GraphEdges(const Graph& graph) {
      std::vector<std::pair<string, string>> edges;
      for (const Edge* edge : graph.edges()) {
        if (edge->src()->IsSource() || edge->dst()->IsSink()) continue;
        edges.emplace_back(
            absl::StrCat(edge->src()->name(), ":", edge->src_output()),
            absl::StrCat(edge->dst()->name(), ":", edge->dst_input()));
      }
      std::sort(edges.begin(), edges.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		if m == 0 {
    			switch p.As {
    			case obj.APCALIGN, obj.APCALIGNMAX:
    				m = obj.AlignmentPadding(int32(pc), p, ctxt, cursym)
    				break
    			case obj.ANOP, obj.AFUNCDATA, obj.APCDATA:
    				continue
    			default:
    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    		}
    		pc += int64(m)
    
    		if o.flag&LFROM != 0 {
    			c.addpool(p, &p.From)
    		}
    		if o.flag&LTO != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Maps.java

       * <p>Note that {@code c} is the backing (delegate) collection, rather than the forwarding
       * collection.
       *
       * @param c the delegate (unwrapped) collection of map entries
       * @param o the object that might be contained in {@code c}
       * @return {@code true} if {@code c} contains {@code o}
       */
      static <K extends @Nullable Object, V extends @Nullable Object> boolean containsEntryImpl(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    		obj, err := registry.Get(testContext, pod.Name, &metav1.GetOptions{})
    		if tc.expectedNotFound {
    			if err == nil || !errors.IsNotFound(err) {
    				t.Fatalf("Unexpected error: %v", err)
    			}
    			continue
    		}
    		if !tc.expectedNotFound && err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    		}
    		if !tc.expectedNotFound {
    			pod, ok := obj.(*example.Pod)
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // sets the feature build tags for all previous levels as well.
    // For example, GOAMD64=v2 sets the amd64.v1 and amd64.v2 feature flags.
    // This ensures that code making use of v2 features continues to compile
    // when, say, GOAMD64=v4 is introduced.
    // Code handling the absence of a particular feature level
    // should use a negation:
    //
    //	//go:build !amd64.v2
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top