Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for withZip (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        Returns True if it is a variable.
      """
      return node_def.op == 'VarHandleOp'
    
    
    def _find_variables(
        graph_def: graph_pb2.GraphDef,
    ) -> Mapping[str, node_def_pb2.NodeDef]:
      """Finds all variables within `graph_def`.
    
      This function makes sense for TF 1 graphs only, as it depends on
      `shared_name`.
    
      Args:
        graph_def: `GraphDef` to find variables from.
    
      Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // of the expression. At that point, any constant-folding
    // opportunities should be obvious.
    // Note: don't include AddPtr here! In order to maintain the
    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    				}
    			}
    
    			info.Buckets[bucket] = bms
    		}
    	}
    
    	if opts.Users && opts.Groups && opts.Policies && !opts.Buckets {
    		// serialize SiteReplicationMetaInfo calls - if data in cache is within
    		// healing interval, avoid fetching IAM data again from disk.
    		if metaInfo, ok := c.getSRCachedIAMInfo(); ok {
    			return metaInfo, nil
    		}
    	}
    	if opts.Policies || opts.Entity == madmin.SRPolicyEntity {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %1 = "tfl.broadcast_to"(%arg2, %arg3) : (tensor<?x3x2x1xf32>, tensor<8xi64>) -> tensor<8x7x6x5x?x3x2x1xf32>
      // expected-error @+1 {{'tfl.select_v2' op failed to verify that operands do not have the same shape or broadcastable shapes within the rank 5}}
      %2 = "tfl.select_v2"(%arg0, %0, %1) : (tensor<8x7x6x5x?x3x2x1xi1>, tensor<8x7x6x5x?x3x2x1xf32>, tensor<8x7x6x5x?x3x2x1xf32>) -> tensor<8x7x6x5x?x3x2x1xf32>
      func.return %2 : tensor<8x7x6x5x?x3x2x1xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    // operand combinations for a class of instruction.  The variable oprange indexes
    // all valid ppc64 opcodes.
    //
    // oprange is initialized to point a slice within optab which contains the valid
    // operand combinations for a given instruction.  This is initialized from buildop.
    //
    // Likewise, each slice of optab is dynamically sorted using the ocmp Sort interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    		enableJobPodFailurePolicy     bool
    		job                           batch.Job
    		pods                          []v1.Pod
    		wantStatus                    batch.JobStatus
    	}{
    		"successful job after a single failure within index": {
    			enableJobBackoffLimitPerIndex: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    						mu.Lock()
    						got := logbuf.String()
    						mu.Unlock()
    						t.Fatalf("i=%d: Do = %v; log:\n%s", i, err, got)
    					}
    					t.Skipf("connection likely wasn't recycled within %d, interfering with actual test; skipping", *MaxWriteWaitBeforeConnReuse)
    				}
    				res.Body.Close()
    				if res.Request != req {
    					t.Errorf("Response.Request != original request; want identical Request")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		}
    	case <-time.After(expectTimeout * 3 / 2):
    		t.Fatalf("timeout waiting for shutdown")
    	}
    
    	// Wait for c.Read to unblock; should be already done at this point,
    	// or within a few milliseconds.
    	if err := <-readRes; err == nil {
    		t.Error("expected error from Read")
    	}
    }
    
    // Issue 17878: tests that we can call Close twice.
    func TestServerCloseDeadlock(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top