Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Pairing (0.2 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <comment>We could probably have a specific element for a dev mailing list for things like CI,
            and maybe even a specific element for the user and scm mailing lists. Then leave the more
            lose structure for any other type of mailing list.</comment>
          <codeSegments>
            <codeSegment>
              <version>4.0.0+</version>
              <code>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
        - [Uncategorized](#uncategorized)
      - [Dependencies](#dependencies)
        - [Added](#added)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	}
    }
    
    func getNodeDriveWaitingIOMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      "io_waiting",
    		Help:      "Total number I/O operations waiting on drive",
    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveFreeBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			secretKey:        credentials.SecretKey,
    
    			expectedRespStatus: http.StatusBadRequest,
    		},
    
    		// Test case - 8.
    		// Test case with non-existent source file.
    		// Case for the purpose of failing `api.ObjectAPI.GetObjectInfo`.
    		// Expecting the response status code to http.StatusNotFound (404).
    		{
    			bucketName:       bucketName,
    			uploadID:         uploadID,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    		}
    
    		m.Final = n <= 1
    
    		// Marshal API reesponse
    		if err := enc.Encode(&m); err != nil {
    			n = 0
    		}
    
    		n--
    		if n <= 0 {
    			break
    		}
    
    		// Flush before waiting for next...
    		w.(http.Flusher).Flush()
    
    		select {
    		case <-ticker.C:
    		case <-done:
    			return
    		}
    	}
    }
    
    // DataUsageInfoHandler - GET /minio/admin/v3/datausage?capacity={true}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top