Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for isOnline (0.15 sec)

  1. cmd/erasure-object.go

    // Object Operations
    
    func countOnlineDisks(onlineDisks []StorageAPI) (online int) {
    	for _, onlineDisk := range onlineDisks {
    		if onlineDisk != nil && onlineDisk.IsOnline() {
    			online++
    		}
    	}
    	return online
    }
    
    // CopyObject - copy object source object to destination object.
    // if source object and destination object are same we only
    // update metadata.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	pools := obj.(*erasureServerPools)
    	t := time.Now()
    	for _, pool := range pools.serverPools {
    		for _, sets := range pool.erasureDisks {
    			for _, s := range sets {
    				if !s.IsLocal() {
    					for {
    						if s.IsOnline() {
    							break
    						}
    						time.Sleep(100 * time.Millisecond)
    						if time.Since(t) > 10*time.Second {
    							return nil, nil, errors.New("timeout waiting for disk to come online")
    						}
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			ModTime: st.ModTime(),
    		})
    	}
    	return stat, nil
    }
    
    // CleanAbandonedData will read metadata of the object on disk
    // and delete any data directories and inline data that isn't referenced in metadata.
    // Metadata itself is not modified, only inline data.
    func (s *xlStorage) CleanAbandonedData(ctx context.Context, volume string, path string) error {
    	if volume == "" || path == "" {
    		return nil // Ignore
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    typedef struct _stat StatStruct;
    
    # ifdef __BORLANDC__
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return stricmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    # else  // !__BORLANDC__
    #  if GTEST_OS_WINDOWS_MOBILE
    inline int IsATTY(int /* fd */) { return 0; }
    #  else
    inline int IsATTY(int fd) { return _isatty(fd); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    typedef struct _stat StatStruct;
    
    # ifdef __BORLANDC__
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return stricmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    # else  // !__BORLANDC__
    #  if GTEST_OS_WINDOWS_MOBILE
    inline int IsATTY(int /* fd */) { return 0; }
    #  else
    inline int IsATTY(int fd) { return _isatty(fd); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	width: 1em;
    	position: relative;
    	top: 1px;
    }
    
    ul.inline {
    	margin: 0 auto 0.625em auto;
    	margin-left: -1.375em;
    	margin-right: 0;
    	padding: 0;
    	list-style: none;
    	overflow: hidden;
    }
    
    ul.inline>li {
    	list-style: none;
    	float: left;
    	margin-left: 1.375em;
    	display: block;
    }
    
    ul.inline>li>* {
    	display: block;
    }
    
    .unstyled dl dt {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier_test.go

    							BypassCorsPreflight: true,
    						}),
    				},
    			},
    		},
    		{
    			name: "JWT policy with inline Jwks",
    			in: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer: "https://secret.foo.com",
    								Jwks:   "inline-jwks-data",
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    )
    
    // TypeMeta describes an individual object in an API response or request
    // with strings representing the type of the object and its API schema version.
    // Structures that are versioned or persisted should inline TypeMeta.
    //
    // +k8s:deepcopy-gen=false
    type TypeMeta struct {
    	// Kind is a string value representing the REST resource this object represents.
    	// Servers may infer this from the endpoint the client submits requests to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta2/types.go

    // +k8s:prerelease-lifecycle-gen:removed=1.16
    // +k8s:prerelease-lifecycle-gen:replacement=autoscaling,v1,Scale
    
    // Scale represents a scaling request for a resource.
    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.2
    // +k8s:prerelease-lifecycle-gen:removed=1.16
    
    // represents a scaling request for a resource.
    type Scale struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top