Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for Unary (0.89 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/readWriteAccess/FirIdeNormalAnalysisSourceModuleReadWriteAccessTestGenerated.java

        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/readReferenceInParenthesis.kt");
      }
    
      @Test
      @TestMetadata("unary.kt")
      public void testUnary() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/readWriteAccess/unary.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 08 22:12:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. test/fixedbugs/bug082.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	x := 0
    	x = ^x // unary ^ not yet implemented
    	if x != ^0 {
    		println(x, " ", ^0)
    		panic("fail")
    	}
    }
    
    /*
    uetli:~/Source/go/test/bugs gri$ 6g bug082.go
    bug082.go:7: fatal error: optoas: no entry COM-<int32>INT32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 413 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tpu_host_computation_expansion.cc

    }
    
    // TODO(b/158596585): Replace this with a cost model analysis.
    bool IsTrivialUnaryOperation(Operation* op) {
      return llvm::isa<TF::CastOp, TF::IdentityOp>(op);
    }
    
    // Adds outside compilation attributes to unary ops such as Identity/Cast ops
    // at the head of TPU computation that is used only by other outside compiled
    // ops. Identity ops and Cast ops is commonly added to the start of TPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/ytab.go

    const argListMax int = 6
    
    type argList [argListMax]uint8
    
    type ytab struct {
    	zcase   uint8
    	zoffset uint8
    
    	// Last arg is usually destination.
    	// For unary instructions unaryDst is used to determine
    	// if single argument is a source or destination.
    	args argList
    }
    
    // Returns true if yt is compatible with args.
    //
    // Elements from args and yt.args are used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/expr0.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // unary expressions
    
    package expr0 
    
    type mybool bool
    
    var (
    	// bool
    	b0 = true
    	b1 bool = b0
    	b2 = !true
    	b3 = !b1
    	b4 bool = !true
    	b5 bool = !b4
    	b6 = +b0 /* ERROR "not defined" */
    	b7 = -b0 /* ERROR "not defined" */
    	b8 = ^b0 /* ERROR "not defined" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/regexp/syntax/simplify.go

    		}
    
    		// Some degenerate case like min > max or min < max < 0.
    		// Handle as impossible match.
    		return &Regexp{Op: OpNoMatch}
    	}
    
    	return re
    }
    
    // simplify1 implements Simplify for the unary OpStar,
    // OpPlus, and OpQuest operators. It returns the simple regexp
    // equivalent to
    //
    //	Regexp{Op: op, Flags: flags, Sub: {sub}}
    //
    // under the assumption that sub is already simple, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue13273.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check that we correctly construct (and report errors)
    // for unary expressions of the form <-x where we only
    // know after parsing x whether <-x is a receive operation
    // or a channel type.
    
    package n
    
    func f() {
    	// test case from issue 13273
    	<-chan int((chan int)(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/mips.s

    	//	LMOVW mreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	M1, R1
    	MOVW	M1, R1
    
    
    	//
    	// integer operations
    	// logical instructions
    	// shift instructions
    	// unary instructions
    	//
    	//	LADDW rreg ',' sreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	ADD	R1, R2, R3
    
    	//	LADDW imm ',' sreg ',' rreg
    	//	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/cpp_generator_test.cc

      string output_dir = "tensorflow/c/experimental/ops/gen/cpp/golden";
      string source_dir = "tensorflow";
      string api_dirs = "";
      std::vector<string> ops = {
          "Neg",        // Simple unary Op
          "MatMul",     // 2 inputs & attrs with default values
          "IdentityN",  // Variadic input+output
          "SparseSoftmaxCrossEntropyWithLogits",  // 2 outputs
          "AccumulatorApplyGradient",             // 0 outputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 18 17:02:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. test/peano.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that heavy recursion works. Simple torture test for
    // segmented stacks: do math in unary by recursion.
    
    package main
    
    import "runtime"
    
    type Number *Number
    
    // -------------------------------------
    // Peano primitives
    
    func zero() *Number {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top