Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,078 for check (0.07 sec)

  1. test/nilptr3.go

    	_ = *arrayp     // ERROR "generated nil check"
    	_ = *array0p    // ERROR "generated nil check"
    	_ = *array0p    // ERROR "removed.* nil check"
    	_ = *intp       // ERROR "removed.* nil check"
    	_ = *arrayp     // ERROR "removed.* nil check"
    	_ = *structp    // ERROR "generated nil check"
    	_ = *emptyp     // ERROR "generated nil check"
    	_ = *arrayp     // ERROR "removed.* nil check"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. test/bounds.go

    	use(a1k[i&999])   // ERROR "index bounds check elided"
    	use(a100k[i&999]) // ERROR "index bounds check elided"
    	use(p1[i&999])
    	use(p1k[i&999])   // ERROR "index bounds check elided"
    	use(p100k[i&999]) // ERROR "index bounds check elided"
    
    	use(s[ui&999])
    	use(a1[ui&999])
    	use(a1k[ui&999])   // ERROR "index bounds check elided"
    	use(a100k[ui&999]) // ERROR "index bounds check elided"
    	use(p1[ui&999])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    		for _, check := range checks {
    			// no-op the check if we've specified we want to exclude the check
    			if excluded.Has(check.Name()) {
    				excluded.Delete(check.Name())
    				fmt.Fprintf(&individualCheckOutput, "[+]%s excluded: ok\n", check.Name())
    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // CHECK-DAG: %[[CTL_2:.*]] = tf_executor.island(%[[CTL_0]]) wraps "tf.NoOp"()
    // CHECK-DAG: %[[CTL_3:.*]] = tf_executor.island(%[[CTL_1]]) wraps "tf.NoOp"()
    
    // CHECK: tf_executor.fetch
    // CHECK-SAME: !tf_executor.control, !tf_executor.control
    // CHECK-NEXT: }
    // CHECK-NEXT: return
    
    // Checks that the location for the init op is properly set.
    // CHECK-LOC-LABEL: func.func @main
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/vet/doc.go

    	shift            check for shifts that equal or exceed the width of the integer
    	sigchanyzer      check for unbuffered channel of os.Signal
    	slog             check for invalid structured logging calls
    	stdmethods       check signature of methods of well-known interfaces
    	stringintconv    check for string(int) conversions
    	structtag        check that struct field tags conform to reflect.StructTag.Get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/go/types/assignments.go

    	// Only report a mismatch error if there are no other errors on the rhs.
    	if rhs[0].mode != invalid {
    		check.assignError(orig_rhs, l, r)
    	}
    	check.useLHS(lhs...)
    	// orig_rhs[0] was already evaluated
    }
    
    func (check *Checker) shortVarDecl(pos positioner, lhs, rhs []ast.Expr) {
    	top := len(check.delayed)
    	scope := check.scope
    
    	// collect lhs variables
    	seen := make(map[string]bool, len(lhs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    		}
    	}
    }
    
    func (check *Checker) instantiatedType(ix *typeparams.IndexExpr, def *TypeName) (res Type) {
    	if check.conf._Trace {
    		check.trace(ix.Pos(), "-- instantiating type %s with %s", ix.X, ix.Indices)
    		check.indent++
    		defer func() {
    			check.indent--
    			// Don't format the underlying here. It will always be nil.
    			check.trace(ix.Pos(), "=> %s", res)
    		}()
    	}
    
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typexpr.go

    		}
    	}
    }
    
    func (check *Checker) instantiatedType(x syntax.Expr, xlist []syntax.Expr, def *TypeName) (res Type) {
    	if check.conf.Trace {
    		check.trace(x.Pos(), "-- instantiating type %s with %s", x, xlist)
    		check.indent++
    		defer func() {
    			check.indent--
    			// Don't format the underlying here. It will always be nil.
    			check.trace(x.Pos(), "=> %s", res)
    		}()
    	}
    
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/assignments.go

    	// Only report a mismatch error if there are no other errors on the rhs.
    	if rhs[0].mode != invalid {
    		check.assignError(orig_rhs, l, r)
    	}
    	check.useLHS(lhs...)
    	// orig_rhs[0] was already evaluated
    }
    
    func (check *Checker) shortVarDecl(pos poser, lhs, rhs []syntax.Expr) {
    	top := len(check.delayed)
    	scope := check.scope
    
    	// collect lhs variables
    	seen := make(map[string]bool, len(lhs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

      func.return %3 : tensor<64xf32>
    
    // CHECK-LABEL: func @reshape_removeAdjacentWithMultipleUse
    // CHECK:  %[[CST:.*]] = arith.constant dense<64> : tensor<1xi32>
    // CHECK:  %[[RESHAPE_1:.*]] = "tfl.reshape"(%arg0, %[[CST]]) : (tensor<4x4x4xf32>, tensor<1xi32>) -> tensor<64xf32>
    // CHECK:  %[[RESHAPE_2:.*]]  = "tfl.reshape"(%arg0, %[[CST]]) : (tensor<4x4x4xf32>, tensor<1xi32>) -> tensor<64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top