Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Kris (0.19 sec)

  1. cmd/local-locker.go

    			for _, resource := range args.Resources {
    				lris, ok := l.lockMap[resource]
    				if !ok {
    					continue
    				}
    				// Collect uids, so we don't mutate while we delete
    				uids := make([]string, 0, len(lris))
    				for _, lri := range lris {
    					uids = append(uids, lri.UID)
    				}
    
    				// Delete collected uids:
    				for _, uid := range uids {
    					lris, ok := l.lockMap[resource]
    					if !ok {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 19 22:54:46 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers_test.go

    			Name:   resource,
    			UID:    mustGetUUID(),
    			Owner:  owners[i%len(owners)],
    			Quorum: 2,
    		}
    		lris = append(lris, lri)
    		locksHeld[resource] = append(locksHeld[resource], lri)
    		// concurrent read lock, same resource different uid
    		lri.UID = mustGetUUID()
    		lris = append(lris, lri)
    		locksHeld[resource] = append(locksHeld[resource], lri)
    	}
    
    	var peerLocks []*PeerLocks
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_fr.properties

    errors.invalid_query_sort_value=Le tri donné ({0}) n'est pas valide.
    errors.invalid_query_unsupported_sort_field=Le tri donné ({0}) n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order=L'ordre de tri donné ({0}) n'est pas pris en charge.
    
    errors.crud_invalid_mode=Mode invalide (la valeur attendue est {0}, mais c'est {1}).
    errors.crud_failed_to_create_instance=Impossible de créer une nouvelle donnée.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *     return Scheduler.newFixedRateSchedule(0, 1, TimeUnit.SECONDS);
     *   }
     * }
     * }</pre>
     *
     * <p>This class uses the life cycle methods to read in a list of starting URIs and save the set of
     * outstanding URIs when shutting down. Also, it takes advantage of the scheduling functionality to
     * rate limit the number of queries we perform.
     *
     * @author Luke Sandberg
     * @since 11.0
     */
    @GwtIncompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 25.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            // As recommended by the HTTP RFC and implemented in Firefox, the max age of a document
            // should be defaulted to 10% of the document's age at the time it was served. Default
            // expiration dates aren't used for URIs containing a query.
            val servedMillis = servedDate?.time ?: sentRequestMillis
            val delta = servedMillis - lastModified!!.time
            return if (delta > 0L) delta / 10 else 0L
          }
    
          return 0L
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. api/go1.11.txt

    pkg debug/elf, const EM_CR Machine
    pkg debug/elf, const EM_CR16 = 177
    pkg debug/elf, const EM_CR16 Machine
    pkg debug/elf, const EM_CRAYNV2 = 172
    pkg debug/elf, const EM_CRAYNV2 Machine
    pkg debug/elf, const EM_CRIS = 76
    pkg debug/elf, const EM_CRIS Machine
    pkg debug/elf, const EM_CRX = 114
    pkg debug/elf, const EM_CRX Machine
    pkg debug/elf, const EM_CSR_KALIMBA = 219
    pkg debug/elf, const EM_CSR_KALIMBA Machine
    pkg debug/elf, const EM_CUDA = 190
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  7. docs/en/data/external_links.yml

      - author: Mandy Gu
        author_link: https://towardsdatascience.com/@mandygu
        link: https://towardsdatascience.com/deploying-iris-classifications-with-fastapi-and-docker-7c9b83fdec3a
        title: 'Towards Data Science: Deploying Iris Classifications with FastAPI and Docker'
      - author: Michael Herman
        author_link: https://testdriven.io/authors/herman
        link: https://testdriven.io/blog/fastapi-crud/
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                crawler.setSessionId(sid);
                sessionIdList.add(sid);
    
                final String pathsStr = fileConfig.getPaths();
                if (StringUtil.isBlank(pathsStr)) {
                    logger.warn("No target uris. Skipped");
                    break;
                }
    
                final int intervalTime =
                        fileConfig.getIntervalTime() != null ? fileConfig.getIntervalTime() : Constants.DEFAULT_INTERVAL_TIME_FOR_FS;
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/ClassPath.java

        public int hashCode() {
          return home.hashCode();
        }
    
        @Override
        public String toString() {
          return home.toString();
        }
      }
    
      /**
       * Returns the class path URIs specified by the {@code Class-Path} manifest attribute, according
       * to <a
       * href="http://docs.oracle.com/javase/8/docs/technotes/guides/jar/jar.html#Main_Attributes">JAR
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 05 17:43:40 GMT 2022
    - 24.9K bytes
    - Viewed (1)
  10. api/go1.10.txt

    pkg crypto/x509, type Certificate struct, PermittedURIDomains []string
    pkg crypto/x509, type Certificate struct, URIs []*url.URL
    pkg crypto/x509, type CertificateInvalidError struct, Detail string
    pkg crypto/x509, type CertificateRequest struct, URIs []*url.URL
    pkg crypto/x509, type VerifyOptions struct, MaxConstraintComparisions int
    pkg crypto/x509/pkix, method (Name) String() string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
Back to top