Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 135 for Karkur (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

     * prior notice.
     *
     * @since 3.0
     */
    public interface PluginDescriptorCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        @FunctionalInterface
        interface PluginDescriptorSupplier {
            PluginDescriptor load()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_aws/fess.json

            },
            "arabic_keywords": {
              "type":       "keyword_marker",
              "keywords": ["مرحباا", "عالم", "بحث"]
            },
            "arabic_stemmer": {
              "type":       "stemmer",
              "language":   "arabic"
            },
            "arabic_override": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

            while (!source.exhausted()) {
              var rule: ByteString = source.readUtf8LineStrict().toRule() ?: continue
    
              if (rule.startsWith(EXCEPTION_RULE_MARKER)) {
                rule = rule.substring(1)
                // We use '\n' for end of value.
                totalExceptionRuleBytes += rule.size + 1
                sortedExceptionRules.add(rule)
              } else {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:24:38 GMT 2024
    - 6K bytes
    - Viewed (0)
  4. src/packaging/deb/packaging.properties

    # Properties used to build to the DEB package
    #
    
    # Environment file
    packaging.env.file=/etc/default/fess
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=deb
    
    # Custom header for package scripts
    packaging.scripts.header=#!/bin/sh${line.separator}set -e
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 401 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectRealmCache.java

     * prior notice.
     *
     */
    public interface ProjectRealmCache {
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
         * CacheRecord
         */
        class CacheRecord {
    
            public ClassRealm getRealm() {
                return realm;
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java

         *
         * @param remoteRepository the repository
         */
        void setRepository(ArtifactRepository remoteRepository);
    
        /**
         * Get the repository metadata associated with this marker.
         *
         * @return the metadata, or <code>null</code> if none loaded
         */
        Metadata getMetadata();
    
        /**
         * Set the metadata contents.
         *
         * @param metadata the metadata
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/ExtensionRealmCache.java

     * without prior notice.
     *
     */
    public interface ExtensionRealmCache {
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        /**
         * CacheRecord
         */
        class CacheRecord {
    
            private final ClassRealm realm;
    
            private final ExtensionDescriptor descriptor;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    				// Bucket is versioned and no version was explicitly
    				// mentioned for deletes, create a delete marker instead.
    				vr.ModTime = UTCNow()
    				vr.Deleted = true
    				// Versioning suspended means that we add a `null` version
    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    			}
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

                this.realm = realm;
                this.artifacts = artifacts;
            }
        }
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        @FunctionalInterface
        interface PluginRealmSupplier {
            CacheRecord load() throws PluginResolutionException, PluginContainerException;
        }
    
        Key createKey(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  10. internal/bucket/replication/rule.go

    	errPriorityMissing                        = Errorf("Priority must be specified")
    	errInvalidDeleteMarkerReplicationStatus   = Errorf("Delete marker replication status is invalid")
    	errDestinationSourceIdentical             = Errorf("Destination bucket cannot be the same as the source bucket.")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Jan 24 23:22:20 GMT 2022
    - 8.3K bytes
    - Viewed (0)
Back to top