Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 486 for LookUp (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	_ = flag.Bool("all", false, "no effect (deprecated)")
    	_ = flag.String("tags", "", "no effect (deprecated)")
    	for old, new := range vetLegacyFlags {
    		newFlag := flag.Lookup(new)
    		if newFlag != nil && flag.Lookup(old) == nil {
    			flag.Var(newFlag.Value, old, "deprecated alias for -"+new)
    		}
    	}
    
    	flag.Parse() // (ExitOnError)
    
    	// -flags: print flags so that go vet knows which ones are legitimate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		return name.Name == wantType
    	}
    	if sel, ok := ptr.X.(*ast.SelectorExpr); ok {
    		return sel.Sel.Name == wantType
    	}
    	return false
    }
    
    func lookup(pkg *types.Package, name string) []types.Object {
    	if o := pkg.Scope().Lookup(name); o != nil {
    		return []types.Object{o}
    	}
    
    	var ret []types.Object
    	// Search through the imports to see if any of them define name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                    }
                }
            }
    
            @Override
            public void collectInto(CollectingMacroLookup lookup) {
                if (includeDirectives != null) {
                    lookup.append(file, includeDirectives);
                    includeFileDirectives.appendTo(lookup);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    	// static one-element cache that gives the correct
    	// zone for the time when the Location was created.
    	// if cacheStart <= t < cacheEnd,
    	// lookup can return cacheZone.
    	// The units for cacheStart and cacheEnd are seconds
    	// since January 1, 1970 UTC, to match the argument
    	// to lookup.
    	cacheStart int64
    	cacheEnd   int64
    	cacheZone  *zone
    }
    
    // A zone represents a single time zone such as CET.
    type zone struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            }
    
            try {
                // TODO could the configuration be passed to lookup and the configurator known to plexus via the descriptor
                // so that this method could entirely be handled by a plexus lookup?
                configurator = container.lookup(ComponentConfigurator.class, configuratorId);
    
                ConfigurationListener listener = new DebugConfigurationListener(logger);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    //	PO package->object	Package.Scope.Lookup
    //	OT  object->type 	Object.Type
    //	TT    type->type 	Type.{Elem,Key,Params,Results,Underlying} [EKPRU]
    //	TO   type->object	Type.{At,Field,Method,Obj} [AFMO]
    //
    // All valid paths start with a package and end at an object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/sym.go

    		s = &LSym{Name: name}
    		s.SetABI(abi)
    		hash[name] = s
    		if init != nil {
    			init(s)
    		}
    	}
    	ctxt.hashmu.Unlock()
    	return s
    }
    
    // Lookup looks up the symbol with name name.
    // If it does not exist, it creates it.
    func (ctxt *Link) Lookup(name string) *LSym {
    	return ctxt.LookupInit(name, nil)
    }
    
    // LookupInit looks up the symbol with name name.
    // If it does not exist, it creates it and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

        static {
            try {
                Class<?> metaClassHelperClass = Class.forName("org.gradle.internal.classpath.InstrumentedGroovyMetaClassHelper");
                ADD_INVOCATION_HOOKS_TO_META_CLASS_METHOD = MethodHandles.lookup().findStatic(metaClassHelperClass, "addInvocationHooksToMetaClassIfInstrumented", MethodType.methodType(void.class, Class.class, String.class));
            } catch (NoSuchMethodException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. src/go/types/issues_test.go

    	}
    	// verify that lookup finds the same method in both interfaces (redundant check)
    	obj, _, _ := LookupFieldOrMethod(et, false, nil, "Error")
    	if obj != want {
    		t.Fatalf("%s.Lookup: got %q (%p); want %q (%p)", et, obj, obj, want, want)
    	}
    	obj, _, _ = LookupFieldOrMethod(it, false, nil, "Error")
    	if obj != want {
    		t.Fatalf("%s.Lookup: got %q (%p); want %q (%p)", it, obj, obj, want, want)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

            session.setSession(new DefaultSessionFactory(
                            getContainer().lookup(RepositorySystem.class),
                            getContainer().lookup(MavenRepositorySystem.class),
                            new DefaultLookup(getContainer()),
                            getContainer().lookup(RuntimeInformation.class))
                    .newSession(session));
    
            legacySupport.setSession(session);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top