Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,734 for nfinal (0.57 sec)

  1. src/net/http/transport_test.go

    // Wait until number of goroutines is no greater than nmax, or time out.
    func waitNumGoroutine(nmax int) int {
    	nfinal := runtime.NumGoroutine()
    	for ntries := 10; ntries > 0 && nfinal > nmax; ntries-- {
    		time.Sleep(50 * time.Millisecond)
    		runtime.GC()
    		nfinal = runtime.NumGoroutine()
    	}
    	return nfinal
    }
    
    // tests that persistent goroutine connections shut down when no longer desired.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    Anuraag Agrawal <******@****.***> 1717647866 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

    import java.util.List;
    
    /**
     * Class for easy access to property validation from the validator task.
     */
    @NonNullApi
    public class PropertyValidationAccess {
        private static final PropertyValidationAccess INSTANCE = new PropertyValidationAccess();
    
        private final List<TypeScheme> typeSchemes;
    
        private PropertyValidationAccess() {
            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder().displayName("Global services");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

        protected static class PropertyMetadata {
            private final String name;
            private final List<MethodMetadata> getters = new ArrayList<>();
            private final List<MethodMetadata> overridableGetters = new ArrayList<>();
            private final List<Method> overridableSetters = new ArrayList<>();
            private final List<Method> setters = new ArrayList<>();
            private final List<Method> setMethods = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            private final List<ExtractedRuleDetails> rules;
            @Nullable
            private final ModelProperty<?> target;
            private final List<ModelProperty<?>> implicitInputs;
            private final StructSchema<?> schema;
            private final StructBindings<?> bindings;
            private final ManagedProxyFactory proxyFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

      // Internal implementations of some classes, with public default constructor that get() needs.
      private static final class Dummies {
    
        public static final class InMemoryPrintStream extends PrintStream {
          public InMemoryPrintStream() {
            super(new ByteArrayOutputStream());
          }
        }
    
        public static final class InMemoryPrintWriter extends PrintWriter {
          public InMemoryPrintWriter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

      // Internal implementations of some classes, with public default constructor that get() needs.
      private static final class Dummies {
    
        public static final class InMemoryPrintStream extends PrintStream {
          public InMemoryPrintStream() {
            super(new ByteArrayOutputStream());
          }
        }
    
        public static final class InMemoryPrintWriter extends PrintWriter {
          public InMemoryPrintWriter() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            private static final String[] EMPTY_STRINGS = new String[0];
            private static final Type[] EMPTY_TYPES = new Type[0];
    
            private final Class<?> type;
            private final boolean managed;
            private final Type generatedType;
            private final Type superclassType;
            private final Map<java.lang.reflect.Type, ReturnTypeEntry> genericReturnTypeConstantsIndex = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. okhttp/api/okhttp.api

    	public final fun immutable ()Z
    	public final fun isPrivate ()Z
    	public final fun isPublic ()Z
    	public final fun maxAgeSeconds ()I
    	public final fun maxStaleSeconds ()I
    	public final fun minFreshSeconds ()I
    	public final fun mustRevalidate ()Z
    	public final fun noCache ()Z
    	public final fun noStore ()Z
    	public final fun noTransform ()Z
    	public final fun onlyIfCached ()Z
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

        }
    
        static final class CaseInsensitiveFs implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return satisfied(MacOs) || satisfied(Windows)
            }
        }
    
        static final class CaseSensitiveFs implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return notSatisfied(CaseInsensitiveFs)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top