Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for Fermat (0.4 sec)

  1. pkg/config/validation/validation.go

    // nolint: unparam
    func appendErrorf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, fmt.Errorf(format, a...))
    }
    
    // AppendWarningf appends a formatted warning string
    // nolint: unparam
    func AppendWarningf(v Validation, format string, a ...any) Validation {
    	return AppendValidation(v, agent.Warningf(format, a...))
    }
    
    func (aae *AnalysisAwareError) Error() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "fieldsType": {
                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	defer func() {
    		if rinfo.ReplicationStatus == replication.Completed && tgt.ResetID != "" && dobj.OpType == replication.ExistingObjectReplicationType {
    			rinfo.ResyncTimestamp = fmt.Sprintf("%s;%s", UTCNow().Format(http.TimeFormat), tgt.ResetID)
    		}
    	}()
    
    	if dobj.VersionID == "" && rinfo.PrevReplicationStatus == replication.Completed && dobj.OpType != replication.ExistingObjectReplicationType {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      // If elements depth equals 1 (i.e., scalar or tensor with 1 element), then we
      // can let binary op to broadcast elements.
      if (elements_depth == 1) {
        return true;
      }
    
      // In TFLite Conv2D uses OHWI format for filter, and 1HWO for Depthwise Conv.
      // For conv:
      // Check if last dimension in filter equals the first dimension
      // For depthwise conv:
      // Check if the first in filter dimension equals the first dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	ts := newClientServerTest(t, mode, hostPortHandler).ts
    	c := ts.Client()
    
    	fetch := func(n, retries int) string {
    		condFatalf := func(format string, arg ...any) {
    			if retries <= 0 {
    				t.Fatalf(format, arg...)
    			}
    			t.Logf("retrying shortly after expected error: "+format, arg...)
    			time.Sleep(time.Second / time.Duration(retries))
    		}
    		for retries >= 0 {
    			retries--
    			res, err := c.Get(ts.URL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	c.Assert(err, nil)
    	request.Header.Set("If-Unmodified-Since", t.Add(-10*time.Minute).UTC().Format(http.TimeFormat))
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusPreconditionFailed)
    
    	// make HTTP request to obtain object info.
    	// But this time set a date with unrecognized format to the "If-Modified-Since" header
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    // Indexes into the Header.Ident array.
    const (
    	EI_CLASS      = 4  /* Class of machine. */
    	EI_DATA       = 5  /* Data format. */
    	EI_VERSION    = 6  /* ELF format version. */
    	EI_OSABI      = 7  /* Operating system / ABI identification */
    	EI_ABIVERSION = 8  /* ABI version */
    	EI_PAD        = 9  /* Start of padding (per SVR4 ABI). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        %0:2, %1:2 = tf_device.replicate([%arg0, %arg1] as %ri_1: tensor<128x10xf32>, [%arg2, %arg3] as %ri_2: tensor<*xi32>) {n = 2 : i32} {
        // expected-error@+1 {{incorrect sharding format for outputs. Number of tiled outputs(4) must match the number of logical devices(2)}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

                scm's {@code child.scm.connection.inherit.append.path="false"}
                @see <a href="https://maven.apache.org/scm/scm-url-format.html">URL format</a>
                @see <a href="https://maven.apache.org/scm/scms-overview.html">list of supported SCMs</a>
                ]]>
              </description>
              <type>String</type>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name:       "error permit pod",
    			sendPod:    podWithID("foo", ""),
    			mockResult: mockScheduleResult{ScheduleResult{SuggestedHost: testNode.Name, EvaluatedNodes: 1, FeasibleNodes: 1}, nil},
    			registerPluginFuncs: []tf.RegisterPluginFunc{
    				tf.RegisterPermitPlugin("FakePermit", tf.NewFakePermitPlugin(framework.NewStatus(framework.Error, "permit error"), time.Minute)),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top