Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,044 for Avery (0.04 sec)

  1. docs/en/docs/advanced/events.md

    Let's imagine that loading the model can **take quite some time**, because it has to read a lot of **data from disk**. So you don't want to do it for every request.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/settings.md

    Reading a file from disk is normally a costly (slow) operation, so you probably want to do it only once and then reuse the same settings object, instead of reading it for each request.
    
    But every time we do:
    
    ```Python
    Settings()
    ```
    
    a new `Settings` object would be created, and at creation it would read the `.env` file again.
    
    If the dependency function was just like:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    	//   the request finishes even if there is a small number of watches.
    	//   However, until we tune the estimation we want to stay on the safe side
    	//   an avoid introducing additional latency for almost every single request.
    	if watchCount >= int(e.config.WatchesPerSeat) {
    		// TODO: As described in the KEP, we should take into account that not all
    		//   events are equal and try to estimate the cost of a single event based on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. docs/en/docs/alternatives.md

    They are, more or less, at opposite ends, complementing each other.
    
    Requests has a very simple and intuitive design, it's very easy to use, with sensible defaults. But at the same time, it's very powerful and customizable.
    
    That's why, as said in the official website:
    
    > Requests is one of the most downloaded Python packages of all time
    
    The way you use it is very simple. For example, to do a `GET` request, you would write:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	// based on the dynamic cert state.
    	baseTLSConfig *tls.Config
    
    	// clientCA provides the very latest content of the ca bundle
    	clientCA CAContentProvider
    	// servingCert provides the very latest content of the default serving certificate
    	servingCert CertKeyContentProvider
    	// sniCerts are a list of CertKeyContentProvider with associated names used for SNI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_test.go

    		atomic.Or8(&x, 1<<i)
    		if r := (uint8(1) << (i + 1)) - 1; x != r {
    			t.Fatalf("setting bit %#x: want %#x, got %#x", uint8(1)<<i, r, x)
    		}
    	}
    
    	// Start with every bit in array set to 0.
    	a := make([]uint8, 1<<12)
    
    	// Set every bit in array bit-by-bit in different goroutines.
    	done := make(chan bool)
    	for i := 0; i < 8; i++ {
    		m := uint8(1 << i)
    		go func() {
    			for i := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Striped.java

        return Collections.unmodifiableList(asStripes);
      }
    
      // Static factories
    
      /**
       * Creates a {@code Striped<L>} with eagerly initialized, strongly referenced locks. Every lock is
       * obtained from the passed supplier.
       *
       * @param stripes the minimum number of stripes (locks) required
       * @param supplier a {@code Supplier<L>} object to obtain locks from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. docs/en/docs/async.md

    To see how to achieve this parallelism in production see the section about [Deployment](deployment/index.md){.internal-link target=_blank}.
    
    ## `async` and `await`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningConfigurationsSpec.groovy

            signingTasks.every { it.signatures.every { it in configurations.signatures.artifacts } }
        }
    
        def "sign configuration with inherited artifacts"() {
            when:
            signing {
                sign configurations.produced
            }
    
            then:
            configurations.signatures.artifacts.size() == 3
            signProduced.signatures.every { it in configurations.signatures.artifacts }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    		}
    	}
    
    	// For every soft pod affinity term of <existingPod>, if <pod> matches the term,
    	// increment <p.counts> for every node in the cluster with the same <term.TopologyKey>
    	// value as that of <existingPod>'s node by the term's weight.
    	topoScore.processTerms(existingPod.PreferredAffinityTerms, incomingPod, state.namespaceLabels, existingPodNode, 1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top