Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Egrave (0.09 sec)

  1. pilot/cmd/pilot-agent/options/options.go

    		"The duration for which the file read operation is delayed once file update is detected").Get()
    
    	secretRotationGracePeriodRatioEnv = env.Register("SECRET_GRACE_PERIOD_RATIO", 0.5,
    		"The grace period ratio for the cert rotation, by default 0.5.").Get()
    	workloadRSAKeySizeEnv = env.Register("WORKLOAD_RSA_KEY_SIZE", 2048,
    		"Specify the RSA key size to use for workload certificates.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/SocksProxy.kt

      }
    
      fun connectionCount(): Int = connectionCount.get()
    
      fun shutdown() {
        serverSocket!!.close()
        executor.shutdown()
        if (!executor.awaitTermination(5, TimeUnit.SECONDS)) {
          throw IOException("Gave up waiting for executor to shut down")
        }
      }
    
      private fun service(from: Socket) {
        val name = "SocksProxy ${from.remoteSocketAddress}"
        threadName(name) {
          try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    To try out the remote Build Cache, Gradle provides a free link:https://hub.docker.com/r/gradle/build-cache-node[Docker image] for a single remote Build Cache node.
    For production grade deployments, link:https://gradle.com/gradle-enterprise-solutions/build-cache/[Develocity] is recommended.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/body.md

    * Si le paramètre est déclaré comme ayant pour type un **modèle Pydantic**, il sera interprété comme faisant partie du **corps** de la requête.
    
    !!! note
        **FastAPI** saura que la valeur de `q` n'est pas requise grâce à la valeur par défaut `=None`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/strconv/atoc_test.go

    	const s = "1.5e308+1.0e307i"
    	const want = 1.5e308 + 1.0e307i
    
    	for _, bitSize := range []int{0, 10, 100, 256} {
    		c, err := ParseComplex(s, bitSize)
    		if err != nil {
    			t.Fatalf("ParseComplex(%q, %d) gave error %s", s, bitSize, err)
    		}
    		if c != want {
    			t.Fatalf("ParseComplex(%q, %d) = %g (expected %g)", s, bitSize, c, want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 23:05:51 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  6. SECURITY.md

    [**sandbox**](https://developers.google.com/code-sandboxing). Memory corruptions
    in TensorFlow ops can be recognized as security issues only if they are
    reachable and exploitable through production-grade, benign models.
    
    ### Compilation
    
    Compiling models via the recommended entry points described in
    [XLA](https://www.tensorflow.org/xla) and
    [JAX](https://jax.readthedocs.io/en/latest/jax-101/02-jitting.html)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. pkg/kubelet/lifecycle/handlers.go

    func isHTTPResponseError(err error) bool {
    	if err == nil {
    		return false
    	}
    	urlErr := &url.Error{}
    	if !errors.As(err, &urlErr) {
    		return false
    	}
    	return strings.Contains(urlErr.Err.Error(), "server gave HTTP response to HTTPS client")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/set_generic_test.go

    		t.Errorf("Unexpected contents: %#v", s)
    	}
    }
    
    func TestSortedList(t *testing.T) {
    	s := sets.New("z", "y", "x", "a")
    	if !reflect.DeepEqual(sets.List(s), []string{"a", "x", "y", "z"}) {
    		t.Errorf("List gave unexpected result: %#v", sets.List(s))
    	}
    }
    
    func TestSetDifference(t *testing.T) {
    	a := sets.New("1", "2", "3")
    	b := sets.New("1", "2", "4", "5")
    	c := a.Difference(b)
    	d := b.Difference(a)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 09:03:44 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/sets/set_test.go

    		t.Errorf("Unexpected contents: %#v", s)
    	}
    }
    
    func TestStringSetList(t *testing.T) {
    	s := NewString("z", "y", "x", "a")
    	if !reflect.DeepEqual(s.List(), []string{"a", "x", "y", "z"}) {
    		t.Errorf("List gave unexpected result: %#v", s.List())
    	}
    }
    
    func TestStringSetDifference(t *testing.T) {
    	a := NewString("1", "2", "3")
    	b := NewString("1", "2", "4", "5")
    	c := a.Difference(b)
    	d := b.Difference(a)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top