Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 680 for entities (0.15 sec)

  1. internal/config/cache/cache.go

    type Config struct {
    	// Flag indicating whether cache is enabled.
    	Enable bool `json:"enable"`
    
    	// Endpoint for caching uses remote mcache server to
    	// store and retrieve pre-condition check entities such as
    	// Etag and ModTime of an object + version
    	Endpoint string `json:"endpoint"`
    
    	// BlockSize indicates the maximum object size below which
    	// data is cached and fetched remotely from DRAM.
    	BlockSize int64
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java

    import org.apache.maven.api.model.ReportPlugin;
    import org.apache.maven.api.model.Reporting;
    import org.apache.maven.model.v4.MavenMerger;
    
    /**
     * As long as Maven controls the BuildPomXMLFilter, the entities that need merging are known.
     * All others can simply be copied from source to target to restore the locationTracker
     *
     * @since 4.0.0
     */
    class FileToRawModelMerger extends MavenMerger {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

    /**< 
     *  Converts special characters in szSrc to xml entity codes and stores 
     *  result in szDest.  Currently conversion of '&', '<', and '>' is supported.
     *  Note that conversion to entities increases the length of the converted 
     *  string.  The greatest conversion size increase would be a string 
     *  consisting entirely of entity characters of converted length 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. docs/select/README.md

    # Select API Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    Traditional retrieval of objects is always as whole entities, i.e GetObject for a 5 GiB object, will always return 5 GiB of data. S3 Select API allows us to retrieve a subset of data by using simple SQL expressions. By using Select API to retrieve only the data needed by the application, drastic performance improvements can be achieved.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * general way.
     *
     * <p>A good example of usage of this class is for HTML escaping where the replacement array
     * contains information about the named HTML entities such as {@code &amp;} and {@code &quot;} while
     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * general way.
     *
     * <p>A good example of usage of this class is for HTML escaping where the replacement array
     * contains information about the named HTML entities such as {@code &amp;} and {@code &quot;} while
     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  7. src/go/internal/srcimporter/srcimporter.go

    // maintained with the importer. The import mode must be zero but is otherwise ignored.
    // Packages that are not comprised entirely of pure Go files may fail to import because the
    // type checker may not be able to determine all exported entities (e.g. due to cgo dependencies).
    func (p *Importer) ImportFrom(path, srcDir string, mode types.ImportMode) (*types.Package, error) {
    	if mode != 0 {
    		panic("non-zero import mode")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Identities.kt

    Rodrigo B. de Oliveira <******@****.***> 1716386557 -0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 20:48:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	if len(entries) != 2 {
    		t.Errorf("Expected 2 entries, got %d", len(entries))
    	}
    	expectedEntries := sets.NewString("192.168.1.1,tcp:8080", "192.168.1.2,tcp:8081")
    	if !expectedEntries.Equal(sets.NewString(entries...)) {
    		t.Errorf("Unexpected entries mismatch, expected: %v, got: %v", expectedEntries, entries)
    	}
    
    	// test entries
    	found, err := fake.TestEntry("192.168.1.1,tcp:8080", set.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/testing/fake.go

    	if f.Entries == nil {
    		return false, fmt.Errorf("entries map can't be nil")
    	}
    	found := f.Entries[set].Has(entry)
    	return found, nil
    }
    
    // ListEntries is part of interface.
    func (f *FakeIPSet) ListEntries(set string) ([]string, error) {
    	if f.Entries == nil {
    		return nil, fmt.Errorf("entries map can't be nil")
    	}
    	return f.Entries[set].UnsortedList(), nil
    }
    
    // ListSets is part of interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top