Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 760 for synchronize (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

        }
    
        protected void registerModifiedProperty(String propertyName) {
            __modifiedProperties.addPropertyName(propertyName);
            registerSpecifiedProperty(propertyName); // synchronize if exists, basically for user's manual call
        }
    
        public void modifiedToSpecified() {
            if (__modifiedProperties.isEmpty()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FILE_GENERIC_READ    = STANDARD_RIGHTS_READ | FILE_READ_DATA | FILE_READ_ATTRIBUTES | FILE_READ_EA | SYNCHRONIZE
    	FILE_GENERIC_WRITE   = STANDARD_RIGHTS_WRITE | FILE_WRITE_DATA | FILE_WRITE_ATTRIBUTES | FILE_WRITE_EA | FILE_APPEND_DATA | SYNCHRONIZE
    	FILE_GENERIC_EXECUTE = STANDARD_RIGHTS_EXECUTE | FILE_READ_ATTRIBUTES | FILE_EXECUTE | SYNCHRONIZE
    
    	FILE_LIST_DIRECTORY = 0x00000001
    	FILE_TRAVERSE       = 0x00000020
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/documentMap.dfprop

        #   o isOverrideExistingDataFile: Does it output to existing files? (NotRequired - Default false)
        #   o isSynchronizeOriginDate: Does it synchronize origin date for date adjustment? (NotRequired - Default false)
        #
        ; loadDataReverseMap = map:{
            ; recordLimit = -1
            ; isReplaceSchemaDirectUse = true
            ; isOverrideExistingDataFile = false
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int READ_CONTROL          = 0x00020000; // 17
        static final int WRITE_DAC             = 0x00040000; // 18
        static final int WRITE_OWNER           = 0x00080000; // 19
        static final int SYNCHRONIZE           = 0x00100000; // 20
        static final int GENERIC_ALL           = 0x10000000; // 28
        static final int GENERIC_EXECUTE       = 0x20000000; // 29
        static final int GENERIC_WRITE         = 0x40000000; // 30
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.4K bytes
    - Viewed (0)
  5. src/sync/rwmutex.go

    //
    // In the terminology of [the Go memory model],
    // the n'th call to [RWMutex.Unlock] “synchronizes before” the m'th call to Lock
    // for any n < m, just as for [Mutex].
    // For any call to RLock, there exists an n such that
    // the n'th call to Unlock “synchronizes before” that call to RLock,
    // and the corresponding call to [RWMutex.RUnlock] “synchronizes before”
    // the n+1'th call to Lock.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    )
    
    func lock(f File, lt lockType) (err error) {
    	// POSIX locks apply per inode and process, and the lock for an inode is
    	// released when *any* descriptor for that inode is closed. So we need to
    	// synchronize access to each inode internally, and must serialize lock and
    	// unlock calls that refer to the same inode through different descriptors.
    	fi, err := f.Stat()
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int WRITE_DAC             = 0x00040000; // 18
        public static final int WRITE_OWNER           = 0x00080000; // 19
        public static final int SYNCHRONIZE           = 0x00100000; // 20
        public static final int GENERIC_ALL           = 0x10000000; // 28
        public static final int GENERIC_EXECUTE       = 0x20000000; // 29
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ACE.java

        public static final int WRITE_DAC = 0x00040000; // 18
        /**
         * 
         */
        public static final int WRITE_OWNER = 0x00080000; // 19
        /**
         * 
         */
        public static final int SYNCHRONIZE = 0x00100000; // 20
        /**
         * 
         */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /**
         * 
         */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  9. src/net/http/transport_dial_test.go

    		http.NewResponseController(w).EnableFullDuplex()
    		w.WriteHeader(200)
    		http.NewResponseController(w).Flush()
    		// Wait for the client to send the request body,
    		// to synchronize with the rest of the test.
    		io.ReadAll(r.Body)
    	}), func(tr *http.Transport) {
    		tr.DialContext = func(ctx context.Context, network, address string) (net.Conn, error) {
    			c := &transportDialTesterConn{
    				t:     t,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

            return getCleanup().map(cleanup ->
                new MustBeConfiguredCleanupFrequency(((CleanupInternal) cleanup).getCleanupFrequency())
            );
        }
    
        @Override
        public void synchronize(CacheConfigurationsInternal persistentCacheConfigurations) {
            persistentCacheConfigurations.getReleasedWrappers().getRemoveUnusedEntriesOlderThan().value(getReleasedWrappers().getRemoveUnusedEntriesOlderThan());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top