Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Baugue (0.19 sec)

  1. .idea/dictionaries/Artem_Daugel_Dauge.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Artem.Daugel-Dauge">
        <words>
          <w>vendored</w>
          <w>xcframework</w>
        </words>
      </dictionary>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Sun Nov 27 18:09:38 GMT 2022
    - 183 bytes
    - Viewed (0)
  2. docs/fr/docs/contributing.md

    * Pour vérifier le code à 2 lettres de la langue que vous souhaitez traduire, vous pouvez utiliser le tableau <a href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes" class="external-link" target="_blank">Liste des codes ISO 639-1</a>.
    
    #### Langue existante
    
    Disons que vous voulez traduire une page pour une langue qui a déjà des traductions pour certaines pages, comme l'espagnol.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    | `minio_system_cpu_avg_idle`   | `gauge` | Average CPU idle time              | `server` |
    | `minio_system_cpu_avg_iowait` | `gauge` | Average CPU IOWait time            | `server` |
    | `minio_system_cpu_load`       | `gauge` | CPU load average 1min              | `server` |
    | `minio_system_cpu_load_perc`  | `gauge` | CPU load average 1min (percentage) | `server` |
    | `minio_system_cpu_nice`       | `gauge` | CPU nice time                      | `server` |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 26K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_experimental.h

    TFE_MonitoringGetCellIntGauge0(TFE_MonitoringIntGauge0* gauge);
    
    // APIs for Int Gauge with 1 label.
    typedef struct TFE_MonitoringIntGauge1 TFE_MonitoringIntGauge1;
    TF_CAPI_EXPORT extern TFE_MonitoringIntGauge1* TFE_MonitoringNewIntGauge1(
        const char* name, TF_Status* out_status, const char* description,
        const char* label1);
    TF_CAPI_EXPORT extern void TFE_MonitoringDeleteIntGauge1(
        TFE_MonitoringIntGauge1* gauge);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental.cc

      if (!result->gauge->GetStatus().ok()) {
        delete result;
        return nullptr;
      }
      return result;
    }
    
    void TFE_MonitoringDeleteIntGauge1(TFE_MonitoringIntGauge1* gauge) {
      delete gauge;
    }
    
    TFE_MonitoringIntGaugeCell* TFE_MonitoringGetCellIntGauge1(
        TFE_MonitoringIntGauge1* gauge, const char* label1) {
      return static_cast<TFE_MonitoringIntGaugeCell*>(
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
  6. README.fr.md

    Nous acceuillons avec plaisir les pull request pour votre langue.
    
    ## Powered By
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental_test.cc

      EXPECT_EQ("test/gauge", metrics->point_set_map.at("test/gauge")->metric_name);
      EXPECT_EQ(1,
                metrics->point_set_map.at("test/gauge")->points.at(0)->int64_value);
    
      TFE_MonitoringIntGaugeCellSet(cell, 5);
      metrics = collection_registry->CollectMetrics(options);
      EXPECT_EQ(5,
                metrics->point_set_map.at("test/gauge")->points.at(0)->int64_value);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 03:14:26 GMT 2023
    - 31.5K bytes
    - Viewed (1)
  8. cmd/metrics-v3-types.go

    const (
    	// CounterMT - represents a counter metric.
    	CounterMT MetricType = iota
    	// GaugeMT - represents a gauge metric.
    	GaugeMT
    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    	case HistogramMT:
    		return "histogram"
    	default:
    		return "*unknown*"
    	}
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.user_registeredAddress	=	Adresse enregistrée
    labels.registeredAddress	=	Adresse enregistrée
    labels.user_displayName	=	Afficher un nom
    labels.displayName	=	Afficher un nom
    labels.user_preferredLanguage	=	langue préférée
    labels.preferredLanguage	=	langue préférée
    labels.user_departmentNumber	=	Numéro de département
    labels.departmentNumber	=	Numéro de département
    labels.user_uidNumber	=	uidNumber
    labels.uidNumber	=	uidNumber
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

        private val DASHDASH = byteArrayOf('-'.code.toByte(), '-'.code.toByte())
    
        /**
         * Appends a quoted-string to a StringBuilder.
         *
         * RFC 2388 is rather vague about how one should escape special characters in form-data
         * parameters, and as it turns out Firefox and Chrome actually do rather different things, and
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top