Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dynlink (0.06 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

                this.previousWrite = previous;
              }
            };
    
        // implements Queue
    
        @Override
        public boolean offer(ReferenceEntry<K, V> entry) {
          // unlink
          connectWriteOrder(entry.getPreviousInWriteQueue(), entry.getNextInWriteQueue());
    
          // add to tail
          connectWriteOrder(head.getPreviousInWriteQueue(), entry);
          connectWriteOrder(entry, head);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	}
    	if errs[errdID] != nil {
    		st.Status = madmin.ReplicateRemoveStatusPartial
    		st.ErrDetail = errs[errdID].Error()
    	}
    	return st, nil
    }
    
    // InternalRemoveReq - sends an unlink request to peer cluster to remove one or more sites
    // from the site replication configuration.
    func (c *SiteReplicationSys) InternalRemoveReq(ctx context.Context, objectAPI ObjectLayer, rreq madmin.SRRemoveReq) error {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    rdv.to
    
    // .pl domains (grandfathered)
    art.pl
    gliwice.pl
    krakow.pl
    poznan.pl
    wroc.pl
    zakopane.pl
    
    // Pantheon Systems, Inc. : https://pantheon.io/
    // Submitted by Gary Dylina <******@****.***>
    pantheonsite.io
    gotpantheon.com
    
    // Peplink | Pepwave : http://peplink.com/
    // Submitted by Steve Leung <******@****.***>
    mypep.link
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top