Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 830 for lombok (0.15 sec)

  1. src/go/types/lookup.go

    	// search current depth
    	for len(current) > 0 {
    		var next []embeddedType // embedded types found at current depth
    
    		// look for (pkg, name) in all types at current depth
    		for _, e := range current {
    			typ := e.typ
    
    			// If we have a named type, we may have associated methods.
    			// Look for those first.
    			if named := asNamed(typ); named != nil {
    				if alt := seen.lookup(named); alt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. istioctl/pkg/util/handlers/handlers.go

    	if idx := strings.LastIndex(name, "/"); idx > 0 {
    		// If there is a / in it, we need to handle differently. This is resourcetype/name.namespace.
    		// However, resourcetype can have . in it as well, so we should only look for namespace after the /.
    		separator := strings.LastIndex(name[idx:], ".")
    		if separator < 0 {
    			return name, namespace
    		}
    
    		return name[0 : idx+separator], name[idx+separator+1:]
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

                  .ok())) {
          return module.emitOpError() << "failed to look up device";
        }
    
        tensorflow::Var* var_ptr;
        if (!(device->resource_manager()
                  ->Lookup(resource_handle.container(), resource_handle.name(),
                           &var_ptr)
                  .ok())) {
          return module.emitOpError() << "failed to look up resource value";
        }
        tensorflow::core::RefCountPtr<Var> var(var_ptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/net/http/pprof/pprof.go

    //
    // # Usage examples
    //
    // Use the pprof tool to look at the heap profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/heap
    //
    // Or to look at a 30-second CPU profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/profile?seconds=30
    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         *
         * This method should be called only once per build but multiple calls with the
         * same argument are allowed.
         *
         * @param settingsDir directory where to look for the {@code gradle.properties} file
         * @param setSystemProperties should system properties be set or not
         * @throws IllegalStateException if called with a different argument in the same build
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/html/template/error.go

    	// Discussion:
    	//   A recursive template does not end in the same context in which it
    	//   starts, and a reliable output context cannot be computed.
    	//   Look for typos in the named template.
    	//   If the template should not be called in the named start context,
    	//   look for calls to that template in unexpected contexts.
    	//   Maybe refactor recursive templates to not be recursive.
    	ErrOutputContext
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    The project structure is created in the `settings.gradle(.kts)` file.
    The settings file must be present in the root directory.
    
    [[sec:creating_multi_project_builds]]
    == A simple multi-project build
    
    Let's look at a _basic_ multi-project build example that contains a root project and a single subproject.
    
    The root project is called `basic-multiproject`, located somewhere on your machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class NestedModelRuleDslDetectionIntegrationTest extends AbstractIntegrationSpec {
        def "rules can contain arbitrary code that includes closures that look like nested rules"() {
            buildFile << '''
    class UnmanagedThing {
        def getSomeProp() {
            return this
        }
        def conf(Closure cl) {
            cl.delegate = this
            cl.call()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top