Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for compareIDs (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (matchPattern(op.getStrides(), m_Constant(&strides))) {
        if (llvm::is_contained(strides.getValues<APInt>(), 0))
          return op.emitOpError("requires non-zero strides");
      }
    
      // Use bit compares to ensure ellipsis_mask is 0 or a power of 2, i.e. there
      // exists only no more than one ellipsis.
      uint32_t ellipsis_mask = op.getEllipsisMask();
      if (ellipsis_mask != 0 && !llvm::isPowerOf2_32(ellipsis_mask))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		if test.got != test.exp {
    			t.Errorf("On %v, expected '%v', but got '%v'",
    				test.name, test.exp, test.got)
    		}
    	}
    }
    
    func TestTranslateTimestampUntil(t *testing.T) {
    	// Since this method compares the time with time.Now() internally,
    	// small buffers of 0.1 seconds are added on comparing times to consider method call overhead.
    	// Otherwise, the output strings become shorter than expected.
    	const buf = 1e8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // # Module authentication using go.sum
    //
    // When the go command downloads a module zip file or go.mod file into the
    // module cache, it computes a cryptographic hash and compares it with a known
    // value to verify the file hasn't changed since it was first downloaded. Known
    // hashes are stored in a file in the module root directory named go.sum. Hashes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    For instance, the current compilers disallow duplicate integer,
    floating point, or string constants in case expressions.
    </p>
    
    <h4 id="Type_switches">Type switches</h4>
    
    <p>
    A type switch compares types rather than values. It is otherwise similar
    to an expression switch. It is marked by a special switch expression that
    has the form of a <a href="#Type_assertions">type assertion</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top