Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for noParams (0.17 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // Option is the type of demangler options.
    type Option int
    
    const (
    	// The NoParams option disables demangling of function parameters.
    	// It only omits the parameters of the function name being demangled,
    	// not the parameter types of other functions that may be mentioned.
    	// Using the option will speed up the demangler and cause it to
    	// use less memory.
    	NoParams Option = iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

        private enum State {INIT, STARTED, CLOSED}
    
        private final static ServiceRegistry[] NO_PARENTS = new ServiceRegistry[0];
        private final static Service[] NO_DEPENDENTS = new Service[0];
        private final static Object[] NO_PARAMS = new Object[0];
    
        private final ClassInspector inspector;
        private final OwnServices ownServices;
        private final ServiceProvider allServices;
        private final ServiceProvider parentServices;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        );
    
        private static final ImmutableSet<Class<? extends Annotation>> NESTED_ANNOTATION_TYPES = ImmutableSet.of(
            Nested.class,
            SoftwareType.class
        );
    
        private static final Object[] NO_PARAMS = new Object[0];
    
        private final CrossBuildInMemoryCache<Class<?>, GeneratedClassImpl> generatedClasses;
        private final ImmutableSet<Class<? extends Annotation>> disabledAnnotations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top