Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 239 for Fermat (0.74 sec)

  1. docs/bucket/notifications/README.md

    When the _access_ format is used, MinIO appends events as documents in an Elasticsearch index. For each event, a document with the event details, with the timestamp of document set to the event's timestamp is appended to an index. The ID of the documented is randomly generated by Elasticsearch. No documents are deleted or modified in this format.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "foodir/fooobject",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    			"[%07.2f]",
    			"[% 07.2f]",
    			"[%+07.2f]",
    			"[% +07.2f]"
    		};
    
    		int main(void) {
    			int i;
    			for(i = 0; i < 11; i++) {
    				printf("%s: ", format[i]);
    				printf(format[i], 1.0);
    				printf(" ");
    				printf(format[i], -1.0);
    				printf("\n");
    			}
    		}
    
    		Output:
    			[%.2f]: [1.00] [-1.00]
    			[% .2f]: [ 1.00] [-1.00]
    			[%+.2f]: [+1.00] [-1.00]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    	ErrMalformedDate: {
    		Code:           "MalformedDate",
    		Description:    "Invalid date format header, expected to be in ISO8601, RFC1123 or RFC1123Z time format.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedPresignedDate: {
    		Code:           "AuthorizationQueryParametersError",
    		Description:    "X-Amz-Date must be in the ISO8601 Long Format \"yyyyMMdd'T'HHmmss'Z'\"",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. src/testing/testing.go

    type TB interface {
    	Cleanup(func())
    	Error(args ...any)
    	Errorf(format string, args ...any)
    	Fail()
    	FailNow()
    	Failed() bool
    	Fatal(args ...any)
    	Fatalf(format string, args ...any)
    	Helper()
    	Log(args ...any)
    	Logf(format string, args ...any)
    	Name() string
    	Setenv(key, value string)
    	Skip(args ...any)
    	SkipNow()
    	Skipf(format string, args ...any)
    	Skipped() bool
    	TempDir() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    		return s, err
    	}
    
    	if len(s.formatData) > 0 {
    		format := &formatErasureV3{}
    		json := jsoniter.ConfigCompatibleWithStandardLibrary
    		if err = json.Unmarshal(s.formatData, &format); err != nil {
    			return s, errCorruptedFormat
    		}
    		m, n, err := findDiskIndexByDiskID(format, format.Erasure.This)
    		if err != nil {
    			return s, err
    		}
    		diskID := format.Erasure.This
    		if m != ep.SetIdx || n != ep.DiskIdx {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	errTooManyAuthorities = errors.New("too many Authorities to pack (>65535)")
    	errTooManyAdditionals = errors.New("too many Additionals to pack (>65535)")
    	errNonCanonicalName   = errors.New("name is not in canonical format (it must end with a .)")
    	errStringTooLong      = errors.New("character string exceeds maximum length (255)")
    )
    
    // Internal constants.
    const (
    	// packStartingCap is the default initial buffer size allocated during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        URI         /logs
        header_tag  FLUENT-TAG
        Format      msgpack
        Retry_Limit 2
    '@
    
    # Fluentbit parsers config file
    $PARSERS_CONFIG = @'
    [PARSER]
        Name        docker
        Format      json
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
    
    [PARSER]
        Name        containerd
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	if !state.ShouldRecordPluginMetrics() {
    		return pl.Permit(ctx, state, pod, nodeName)
    	}
    	startTime := time.Now()
    	status, timeout := pl.Permit(ctx, state, pod, nodeName)
    	f.metricsRecorder.ObservePluginDurationAsync(metrics.Permit, pl.Name(), status.Code().String(), metrics.SinceInSeconds(startTime))
    	return status, timeout
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. configure.py

      """
      if not question:
        question = 'Do you wish to build TensorFlow with {} support?'.format(
            query_item)
      if not yes_reply:
        yes_reply = '{} support will be enabled for TensorFlow.'.format(query_item)
      if not no_reply:
        no_reply = 'No {}'.format(yes_reply)
    
      yes_reply += '\n'
      no_reply += '\n'
    
      if enabled_by_default:
        question += ' [Y/n]: '
      else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top