Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,048 for nfinal (3.28 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/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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        protected String replaceHighlightQueries(final String cache, final String[] queries) {
            final StringBuffer buf = new StringBuffer(cache.length() + 100);
            final StringBuffer segBuf = new StringBuffer(1000);
            final Pattern p = Pattern.compile("<[^>]+>");
            final Matcher m = p.matcher(cache);
            final String[] regexQueries = new String[queries.length];
            final String[] hlQueries = new String[queries.length];
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

        }
    
        protected void processAccessControlEntries(final ResponseData responseData, final SmbFile file) {
            try {
                final ACE[] aces = file.getSecurity(resolveSids);
                if (aces != null) {
                    final Set<SID> sidAllowSet = new HashSet<>();
                    final Set<SID> sidDenySet = new HashSet<>();
                    for (final ACE ace : aces) {
                        if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                        public List<Map<String, String>> load(final String key) throws Exception {
                            final ULocale uLocale = new ULocale(key);
                            final Locale displayLocale = uLocale.toLocale();
                            final List<Map<String, String>> langItems = new ArrayList<>(supportedLanguages.length);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGSpec.java

        private static final long serialVersionUID = 1;
    
        private final TestFilterSpec filter;
        private final String defaultSuiteName;
        private final String defaultTestName;
        private final String parallel;
        private final int threadCount;
        private final int suiteThreadPoolSize;
        private final boolean useDefaultListener;
        private final String threadPoolFactoryClass;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top