Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 193 for starting (1.2 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

        private static final Logger LOGGER = LoggerFactory.getLogger(WatchingVirtualFileSystem.class);
        private static final String FILE_WATCHING_ERROR_MESSAGE_DURING_BUILD = "Unable to watch the file system for changes";
        private static final String FILE_WATCHING_ERROR_MESSAGE_AT_END_OF_BUILD = "Gradle was unable to watch the file system for changes";
    
        private final FileWatcherRegistryFactory watcherRegistryFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

        private static final String PREFIX_PROJECT = "project.";
        private static final String PREFIX_POM = "pom.";
        private static final List<String> PROJECT_PREFIXES_3_1 = Arrays.asList(PREFIX_POM, PREFIX_PROJECT);
        private static final List<String> PROJECT_PREFIXES_4_0 = Collections.singletonList(PREFIX_PROJECT);
    
        private static final Collection<String> TRANSLATED_PATH_EXPRESSIONS;
    
        static {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/offline-mode.apt

      Since we're only going to concern ourselves with states where localhost is
      still active, we only need to worry about this case when the server container
      is <<not>> installed on localhost. This allows the popular pattern of starting
      a server container in-JVM, running tests against it, and shutting it down.
    
    ** SCM mojos
    
      See below for discussion on SCM-related operations. Any mojo which
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    }
    
    // check may be nil.
    func (check *Checker) interfacePtrError(T Type) string {
    	assert(isInterfacePtr(T))
    	if p, _ := under(T).(*Pointer); isTypeParam(p.base) {
    		return check.sprintf("type %s is pointer to type parameter, not type parameter", T)
    	}
    	return check.sprintf("type %s is pointer to interface, not interface", T)
    }
    
    // funcString returns a string of the form name + signature for f.
    // check may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/Utf8Test.java

     * @author Martin Buchholz
     * @author Clément Roux
     */
    @GwtCompatible(emulated = true)
    public class Utf8Test extends TestCase {
    
      private static final ImmutableList<String> ILL_FORMED_STRINGS;
    
      static {
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        char[] surrogates = {
          MAX_LOW_SURROGATE, MAX_HIGH_SURROGATE, MIN_LOW_SURROGATE, MIN_HIGH_SURROGATE,
        };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	String(name string, def string, usage string) *string
    
    	// StringList is similar to String but allows multiple values for a
    	// single flag
    	StringList(name string, def string, usage string) *[]*string
    
    	// ExtraUsage returns any additional text that should be printed after the
    	// standard usage message. The extra usage message returned includes all text
    	// added with AddExtraUsage().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            }
            return null;
        }
    
        protected Map<String, Object> ingest(final AccessResult<String> accessResult, final Map<String, Object> map) {
            if (ingestFactory == null) {
                return map;
            }
            Map<String, Object> target = map;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

        protected static final String LOCATION_HEADER = "Location";
    
        @Resource
        protected CrawlerContainer crawlerContainer;
    
        protected Map<String, String> featureMap = new HashMap<>();
    
        protected Map<String, String> propertyMap = new HashMap<>();
    
        protected Map<String, String> childUrlRuleMap = new LinkedHashMap<>();
    
        protected String defaultEncoding;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RegularImmutableMap.java

        this.entries = entries;
        this.table = table;
        this.mask = mask;
      }
    
      /**
       * Checks if the given key already appears in the hash chain starting at {@code keyBucketHead}. If
       * it does not, then null is returned. If it does, then if {@code throwIfDuplicateKeys} is true an
       * {@code IllegalArgumentException} is thrown, and otherwise the existing {@link Entry} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                get() = agentStatus.isAgentInstrumentationEnabled
    
            override val ignoredFileSystemCheckInputs: String?
                get() = startParameter.ignoredFileSystemCheckInputs
    
            override fun gradleProperty(propertyName: String): String? =
                gradleProperties.find(propertyName)?.uncheckedCast()
    
            override fun hashCodeOf(file: File) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top