Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for negation_0 (0.32 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    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
    
    To keep a file from being considered for any build:
    
    	//go:build ignore
    
    (Any other unsatisfied word will work as well, but "ignore" is conventional.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // 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
    //
    // To keep a file from being considered for any build:
    //
    //	//go:build ignore
    //
    // (Any other unsatisfied word will work as well, but "ignore" is conventional.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let arguments = (ins
        Arg<TF_BoolTensor, [{A `Tensor` of type `bool`.}]>:$x
      );
    
      let results = (outs
        Res<TF_BoolTensor, [{A `Tensor` of type `bool` with the same shape as `x`. The logical negation of `x`.}]>:$y
      );
    
      let hasCanonicalizer = 1;
      let extraClassDeclaration = [{
        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top