Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Implicits (0.14 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range tests {
    		info := Info{
    			Implicits: make(map[syntax.Node]Object),
    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    	}
    
    	for _, test := range tests {
    		info := Info{
    			Implicits: make(map[ast.Node]Object),
    		}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// the test cases expect at most one Implicits entry
    		if len(info.Implicits) > 1 {
    			t.Errorf("package %s: %d Implicits entries found", name, len(info.Implicits))
    			continue
    		}
    
    		// extract Implicits entry, if any
    		var got string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            gradleInvocation.args.addAll(getAllArgs());
    
            transformInvocation(gradleInvocation);
    
            if (!gradleInvocation.implicitLauncherJvmArgs.isEmpty()) {
                throw new IllegalStateException("Implicit JVM args have not been handled.");
            }
    
            return gradleInvocation;
        }
    
        protected void validateDaemonVisibility() {
            if (isUseDaemon() && isSharedDaemons()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	//
    	// The suffix array sa therefore serves simultaneously as input, output,
    	// and a miraculously well-tailored work queue.
    
    	// placeLMS_8_64 left out the implicit entry sa[-1] == len(text),
    	// corresponding to the identified type-L index len(text)-1.
    	// Process it before the left-to-right scan of sa proper.
    	// See body in loop for commentary.
    	k := len(text) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        /**
         * Returns true if the class symbol has a type parameter that is supposed to be provided for its parent class.
         *
         * Example:
         * class Outer<T> {
         *   inner class Inner // Inner has an implicit type parameter `T`.
         * }
         */
        private fun FirClassLikeSymbol<*>.hasTypeParameterFromParent(): Boolean = typeParameterSymbols.orEmpty().any {
            it.containingDeclarationSymbol != this
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // the implicit capability to the list, in order to make sure we can discover conflicts
            // between variants of the same module.
            // We also need to add the implicit capability if it was seen before as an explicit
            // capability in order to detect the conflict between the two.
            // Note that the fact that the implicit capability is not included in other cases
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    	if info, ok := check.untyped[x]; ok {
    		info.val = val
    		check.untyped[x] = info
    	}
    }
    
    // implicitTypeAndValue returns the implicit type of x when used in a context
    // where the target type is expected. If no such implicit conversion is
    // possible, it returns a nil Type and non-zero error code.
    //
    // If x is a constant operand, the returned constant.Value will be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    	if info, ok := check.untyped[x]; ok {
    		info.val = val
    		check.untyped[x] = info
    	}
    }
    
    // implicitTypeAndValue returns the implicit type of x when used in a context
    // where the target type is expected. If no such implicit conversion is
    // possible, it returns a nil Type and non-zero error code.
    //
    // If x is a constant operand, the returned constant.Value will be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/regexp/testdata/testregex.c

    T("    k	REG_ESCAPE		\\ to ecape [...] delimiter\n");
    T("    l	REG_LEFT		implicit ^...\n");
    T("    m	REG_MINIMAL		minimal match\n");
    T("    n	REG_NEWLINE		explicit \\n match\n");
    T("    o	REG_ENCLOSED		(|&) magic inside [@|&](...)\n");
    T("    p	REG_SHELL_PATH		explicit / match\n");
    T("    q	REG_DELIMITED		delimited pattern\n");
    T("    r	REG_RIGHT		implicit ...$\n");
    T("    s	REG_SHELL_ESCAPED	\\ not special\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top