Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 437 for actor (0.04 sec)

  1. tensorflow/cc/saved_model/metrics.cc

            "Distribution of the wall time duration in microseconds of the "
            "checkpoint write operation.",  // Metric description.
            "api_label"                     // Cell label.
        },
        // Scale of 1000, growth factor of 1.5 with upper bound of ~184 minutes.
        monitoring::Buckets::Exponential(1000, 1.5, 41));
    
    // Distribution of checkpoint read durations.
    auto* checkpoint_read_durations = monitoring::Sampler<1>::New(
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. helm/minio/templates/statefulset.yaml

              command: [
                "/bin/sh",
                "-ce",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. docs/de/docs/fastapi-people.md

    {% endfor %}
    
    </div>
    {% endif %}
    
    Ich bin der Erfinder und Betreuer von **FastAPI**. Sie können mehr darüber in [FastAPI helfen – Hilfe erhalten – Mit dem Autor vernetzen](help-fastapi.md#mit-dem-autor-vernetzen){.internal-link target=_blank} erfahren.
    
    ... Aber hier möchte ich Ihnen die Gemeinschaft vorstellen.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileAttributesTest.java

                    if ( ( getContext().getConfig().getCapabilities() & SmbConstants.CAP_NT_SMBS ) == 0 ) {
                        // only have second precision
                        // there seems to be some random factor (adding one second)
                        int diff = Math.abs((int) ( ( time / 1000 ) - ( f.lastModified() / 1000 ) ));
                        Assert.assertTrue("Have set time correctly", diff < 2);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Hashing.java

        // Round down to the nearest power of 2.
        expectedEntries = Math.max(expectedEntries, 2);
        int tableSize = Integer.highestOneBit(expectedEntries);
        // Check to make sure that we will not exceed the maximum load factor.
        if (expectedEntries > (int) (loadFactor * tableSize)) {
          tableSize <<= 1;
          return (tableSize > 0) ? tableSize : MAX_TABLE_SIZE;
        }
        return tableSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. src/math/big/prime.go

    		if j == -1 {
    			break
    		}
    		if j == 0 {
    			// d = p²-4 = (p-2)(p+2).
    			// If (d/n) == 0 then d shares a prime factor with n.
    			// Since the loop proceeds in increasing p and starts with p-2==1,
    			// the shared prime factor must be p+2.
    			// If p+2 == n, then n is prime; otherwise p+2 is a proper factor of n.
    			return len(n) == 1 && n[0] == p+2
    		}
    		if p == 40 {
    			// We'll never find (d/n) = -1 if n is a square.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    // childContext returns a CELSchemaContext where the MaxCardinality is multiplied by the
    // factor that the schema increases the cardinality of its children. If the CELSchemaContext's
    // MaxCardinality is unbounded (nil) or the factor that the schema increase the cardinality
    // is unbounded, the resulting CELSchemaContext's MaxCardinality is also unbounded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/help.jsp

    		<pre>content_length:[1000 TO 10000]</pre>
    		If you want to exclude the upper and lower bounds, use "{}".
    	</dd>
    	<dt>Boost</dt>
    	<dd>
    		To boost a term use the "^" symbol with a boost factor (a number) at
    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

      return {static_cast<int32_t>(quantized_multiplier), shift};
    }
    
    // Calculates the quantized range for a given scale, zero point, minimum and
    // maximum values, and quantization range.
    //
    // Args:
    //   scale: The scale factor for the quantized values.
    //   zero_point: The zero point for the quantized values.
    //   rmin: The minimum value of the quantized values.
    //   rmax: The maximum value of the quantized values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/loop_test.go

    		errExpected        error
    		expectedIntervals  func(t *testing.T, delays []time.Duration, delaysRequested []time.Duration)
    	}{
    		{
    			name:    "condition success",
    			delayFn: Backoff{Duration: time.Second, Steps: 2, Factor: 2.0, Jitter: 0}.DelayFunc(),
    			callback: func(attempts int, _ time.Duration) (bool, error) {
    				return true, nil
    			},
    			attemptsExpected: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 02:48:08 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top