Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for respective (0.34 sec)

  1. src/go/types/expr.go

    		// The respective sub-expressions got their final types
    		// upon assignment or use.
    		if debug {
    			check.dump("%v: found old type(%s): %s (new: %s)", x.Pos(), x, old.typ, typ)
    			panic("unreachable")
    		}
    		return
    
    	case *ast.CallExpr:
    		// Resulting in an untyped constant (e.g., built-in complex).
    		// The respective calls take care of calling updateExprType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		// The respective sub-expressions got their final types
    		// upon assignment or use.
    		if debug {
    			check.dump("%v: found old type(%s): %s (new: %s)", atPos(x), x, old.typ, typ)
    			panic("unreachable")
    		}
    		return
    
    	case *syntax.CallExpr:
    		// Resulting in an untyped constant (e.g., built-in complex).
    		// The respective calls take care of calling updateExprType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    	{0, -1, -2, -10},
    	// TODO(gri) add more test cases
    }
    
    // TestFloatAdd tests Float.Add/Sub by comparing the result of a "manual"
    // addition/subtraction of arguments represented by Bits values with the
    // respective Float addition/subtraction for a variety of precisions
    // and rounding modes.
    func TestFloatAdd(t *testing.T) {
    	for _, xbits := range bitsList {
    		for _, ybits := range bitsList {
    			// exact values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        Node* sequencer_ = nullptr;
      };
    
      // Returns the key attribute associated with a node in attr. Sets either
      // result to the empty string if the respective attribute is not found.
      Status GetFunctionNameAttr(Node const* node, string* attr) const;
    
      // Copies edges local to a subgraph. Adds _Arg and _Retval nodes to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            arrayAccessExpression: KtArrayAccessExpression,
        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            // The last argument of `set` is the new value to be set. This value should be a call to the respective `plus`, `minus`,
            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // do not cause any client to actually request a significantly smaller share
    // than it theoretically should.
    // expectFair indicate whether the QueueSet is expected to be
    // fair in the respective halves of a split scenario;
    // in a non-split scenario this is a singleton with one expectation.
    // expectAllRequests indicates whether all requests are expected to get dispatched.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// current/default values in `options` and number of options in array in
      /// `num_options`. Ownership of the array is transferred to caller and the
      /// caller is responsible of freeing the buffers using respective file systems
      /// allocation API.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `options` and `num_options` set.
      ///     If there is no configurable option, `num_options` should be 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    		if ident.Name != "_" {
    			obj := ast.NewObj(ast.Var, ident.Name)
    			// short var declarations cannot have redeclaration errors
    			// and are not global => no need to remember the respective
    			// declaration
    			alt := p.topScope.Insert(obj)
    			if alt == nil {
    				n++ // new declaration
    				alt = obj
    			}
    			ident.Obj = alt
    		}
    	}
    	if n == 0 && p.mode&DeclarationErrors != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    var Types [NTYPE]*Type
    
    var (
    	// Predeclared alias types. These are actually created as distinct
    	// defined types for better error messages, but are then specially
    	// treated as identical to their respective underlying types.
    	AnyType  *Type
    	ByteType *Type
    	RuneType *Type
    
    	// Predeclared error interface type.
    	ErrorType *Type
    	// Predeclared comparable interface type.
    	ComparableType *Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		}
    	}
    	return apiErr
    }
    
    func (e errorCodeMap) ToAPIErr(errCode APIErrorCode) APIError {
    	return e.ToAPIErrWithErr(errCode, nil)
    }
    
    // error code to APIError structure, these fields carry respective
    // descriptions for all the error responses.
    var errorCodes = errorCodeMap{
    	ErrInvalidCopyDest: {
    		Code:           "InvalidRequest",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top