Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for ParseDuration (0.24 sec)

  1. pkg/test/echo/server/endpoint/http.go

    		echo.HostnameField.Write(body, hostname)
    	}
    }
    
    func delayResponse(request *http.Request) error {
    	d := request.FormValue("delay")
    	if len(d) == 0 {
    		return nil
    	}
    
    	t, err := time.ParseDuration(d)
    	if err != nil {
    		return err
    	}
    	time.Sleep(t)
    	return nil
    }
    
    func setHeaderResponseFromHeaders(request *http.Request, response http.ResponseWriter) error {
    	s := request.FormValue("headers")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. internal/config/identity/openid/openid.go

    // GetDefaultExpiration - returns the expiration seconds expected.
    func GetDefaultExpiration(dsecs string) (time.Duration, error) {
    	timeout := env.Get(config.EnvMinioStsDuration, "")
    	defaultExpiryDuration, err := time.ParseDuration(timeout)
    	if err != nil {
    		defaultExpiryDuration = time.Hour
    	}
    	if timeout == "" && dsecs != "" {
    		expirySecs, err := strconv.ParseInt(dsecs, 10, 64)
    		if err != nil {
    			return 0, auth.ErrInvalidDuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. internal/config/notify/parse.go

    		}
    		reconnectInterval, err := time.ParseDuration(env.Get(reconnectIntervalEnv,
    			kv.Get(target.MqttReconnectInterval)))
    		if err != nil {
    			return nil, err
    		}
    
    		keepAliveIntervalEnv := target.EnvMQTTKeepAliveInterval
    		if k != config.Default {
    			keepAliveIntervalEnv = keepAliveIntervalEnv + config.Default + k
    		}
    		keepAliveInterval, err := time.ParseDuration(env.Get(keepAliveIntervalEnv,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    					rt.data,
    					actual,
    				)
    			}
    		})
    	}
    }
    
    func mustParseDuration(durationStr string, t *testing.T) time.Duration {
    	d, err := time.ParseDuration(durationStr)
    	if err != nil {
    		t.Fatalf("couldn't parse duration %q: %v", durationStr, err)
    	}
    	return d
    }
    
    func TestBootstrapTokenFromSecret(t *testing.T) {
    	var tests = []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. cmd/admin-handlers-site-replication.go

    // [POST] /minio/admin/v3/site-replication/netperf
    func (a adminAPIHandlers) SiteReplicationNetPerf(w http.ResponseWriter, r *http.Request) {
    	durationStr := r.Form.Get(peerRESTDuration)
    	duration, _ := time.ParseDuration(durationStr)
    	if duration < globalNetPerfMinDuration {
    		duration = globalNetPerfMinDuration
    	}
    	result := siteNetperf(r.Context(), duration)
    	adminLogIf(r.Context(), gob.NewEncoder(w).Encode(result))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication-handlers.go

    	resetID := r.URL.Query().Get("reset-id")
    	if resetID == "" {
    		resetID = mustGetUUID()
    	}
    	var (
    		days time.Duration
    		err  error
    	)
    	if durationStr != "" {
    		days, err = time.ParseDuration(durationStr)
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, InvalidArgument{
    				Bucket: bucket,
    				Err:    fmt.Errorf("invalid query parameter older-than %s for %s : %w", durationStr, bucket, err),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    		opts.ProgressLog = progress.NewLog()
    	}
    	if int64(opts.WaitTimeout) == 0 {
    		if waitForResourcesTimeoutStr, found := os.LookupEnv("WAIT_FOR_RESOURCES_TIMEOUT"); found {
    			if waitForResourcesTimeout, err := time.ParseDuration(waitForResourcesTimeoutStr); err == nil {
    				opts.WaitTimeout = waitForResourcesTimeout
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// - byte: base64 encoded binary data
    	// - password: any kind of string
    	// - date: a date string like "2006-01-02" as defined by full-date in RFC3339
    	// - duration: a duration string like "22 ns" as parsed by Golang time.ParseDuration or compatible with Scala duration format
    	// - datetime: a date time string like "2014-12-15T19:30:20.000Z" as defined by date-time in RFC3339.
    	Format string `json:"format,omitempty" protobuf:"bytes,6,opt,name=format"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    		str, ok := unstructured.(string)
    		if !ok {
    			return types.NewErr("invalid data, expected string, got %T", unstructured)
    		}
    		switch schema.Format() {
    		case "duration":
    			d, err := strfmt.ParseDuration(str)
    			if err != nil {
    				return types.NewErr("Invalid duration %s: %v", str, err)
    			}
    			return types.Duration{Duration: d}
    		case "date":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. src/testing/benchmark.go

    		if err != nil || n < 0 || (!f.allowZero && n == 0) {
    			return fmt.Errorf("invalid count")
    		}
    		*f = durationOrCountFlag{n: int(n)}
    		return nil
    	}
    	d, err := time.ParseDuration(s)
    	if err != nil || d < 0 || (!f.allowZero && d == 0) {
    		return fmt.Errorf("invalid duration")
    	}
    	*f = durationOrCountFlag{d: d}
    	return nil
    }
    
    // Global lock to ensure only one benchmark runs at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top