Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for _Receiver (0.35 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                isImplicitInvoke = true
    
                // For implicit invoke, the explicit receiver is always set in FIR and this receiver is the variable or property that has
                // the `invoke` member function. In this case, we use the `calleeExpression` in the `KtCallExpression` as the PSI
                // representation of this receiver. Caller can then use this PSI for further call resolution, which is implemented by the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output recv_a = ops::_Recv(root.WithOpName("recv_a"), DT_FLOAT, "tensor_a",
                                 "sender", 0, "receiver");
      Output recv_b = ops::_Recv(root.WithOpName("recv_b"), DT_FLOAT, "tensor_b",
                                 "sender", 0, "receiver");
      Output add = ops::Add(root.WithOpName("add"), recv_a, recv_b);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    type Func struct {
    	allParams []*Field // slice of all parameters, in receiver/params/results order
    
    	startParams  int // index of the start of the (regular) parameters section
    	startResults int // index of the start of the results section
    
    	resultsTuple *Type // struct-like type representing multi-value results
    
    	// Argwid is the total width of the function receiver, params, and results.
    	// It gets calculated via a temporary TFUNCARGS 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)
  4. src/reflect/type.go

    	//
    	// For a non-interface type T or *T, the returned Method's Type and Func
    	// fields describe a function whose first argument is the receiver,
    	// and only exported methods are accessible.
    	//
    	// For an interface type, the returned Method's Type field gives the
    	// method signature, without a receiver, and the Func field is nil.
    	//
    	// Methods are sorted in lexicographic order.
    	Method(int) Method
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

     ** adds <<kotlin_dsl#sec:kotlin_compiler_arguments, Kotlin compiler arguments>>,
     ** registers the link:https://kotlinlang.org/docs/sam-with-receiver-plugin.html[SAM-with-receiver Kotlin compiler plugin].
     * Enables support for <<custom_plugins#sec:precompile_script_plugin,precompiled script plugins>>.
    
    .Avoid specifying a version for the `kotlin-dsl` plugin
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/fmt/fmt_test.go

    }
    
    // PanicS is a type that panics in String.
    type PanicS struct {
    	message any
    }
    
    // Value receiver.
    func (p PanicS) String() string {
    	panic(p.message)
    }
    
    // PanicGo is a type that panics in GoString.
    type PanicGo struct {
    	message any
    }
    
    // Value receiver.
    func (p PanicGo) GoString() string {
    	panic(p.message)
    }
    
    // PanicF is a type that panics in Format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/qualifierOfUnresolvedReference.kt");
      }
    
      @Test
      @TestMetadata("receiver.kt")
      public void testReceiver() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver.kt");
      }
    
      @Test
      @TestMetadata("receiver2.kt")
      public void testReceiver2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/qualifierOfUnresolvedReference.kt");
      }
    
      @Test
      @TestMetadata("receiver.kt")
      public void testReceiver() {
        runTest("analysis/analysis-api/testData/components/referenceShortener/shortenRange/receiver.kt");
      }
    
      @Test
      @TestMetadata("receiver2.kt")
      public void testReceiver2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    }
    
    func (p *parser) parseReceiver(scope *ast.Scope) *ast.FieldList {
    	if p.trace {
    		defer un(trace(p, "Receiver"))
    	}
    
    	pos := p.pos
    	par := p.parseParameters(scope, false)
    
    	// must have exactly one receiver
    	if par.NumFields() != 1 {
    		p.errorExpected(pos, "exactly one receiver")
    		// TODO determine a better range for BadExpr below
    		par.List = []*ast.Field{{Type: &ast.BadExpr{pos, pos}}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    candidatesWithinSamePriorityScopes.singleOrNull()?.isInBestCandidates == true
        }
    
        fun processPropertyAccess(firPropertyAccess: FirPropertyAccessExpression) {
            // if explicit receiver is a property access or a function call, we cannot shorten it
            if (!canBePossibleToDropReceiver(firPropertyAccess)) return
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top