Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 249 for relabel (0.14 sec)

  1. src/runtime/metrics/description.go

    		Cumulative:  true,
    	},
    	{
    		Name:        "/sched/pauses/stopping/gc:seconds",
    		Description: "Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    		increase monotonically.
    
    	/sched/pauses/stopping/gc:seconds
    		Distribution of individual GC-related stop-the-world stopping
    		latencies. This is the time it takes from deciding to stop the
    		world until all Ps are stopped. This is a subset of the total
    		GC-related stop-the-world time (/sched/pauses/total/gc:seconds).
    		During this time, some threads may be executing. Bucket counts
    		increase monotonically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    def TFR_TensorType : TFR_Type<"TFRTensor">;
    def TFR_TensorListType : TFR_Type<"TFRTensorList">;
    def TFR_AllTensorTypes : Type<Or<[
        TFR_TensorType.predicate,
        TFR_TensorListType.predicate]>, "all tensor related types">;
    
    // attribute argument types
    def TFR_AttrType : TFR_Type<"TFRAttr">;
    def TFR_AttrScalarType: TypeAlias<TF_ElementType, "scalar attribute">;
    def TFR_AttrVectorType : VectorOf<[TF_ElementType, TFR_AttrType]>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pe.go

    	if v < Segdata.Filelen {
    		return f.dataSect.index, int64(v), nil
    	}
    	return f.bssSect.index, int64(v - Segdata.Filelen), nil
    }
    
    var isLabel = make(map[loader.Sym]bool)
    
    func AddPELabelSym(ldr *loader.Loader, s loader.Sym) {
    	isLabel[s] = true
    }
    
    // writeSymbols writes all COFF symbol table records.
    func (f *peFile) writeSymbols(ctxt *Link) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    type KubeletAuthentication struct {
    	// x509 contains settings related to x509 client certificate authentication
    	X509 KubeletX509Authentication
    	// webhook contains settings related to webhook bearer token authentication
    	Webhook KubeletWebhookAuthentication
    	// anonymous contains settings related to anonymous authentication
    	Anonymous KubeletAnonymousAuthentication
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ru.properties

    labels.menu_maintenance=Maintenance
    labels.menu_related_content=Related Content
    labels.menu_related_query=Related Query
    labels.menu_plugin=Plugin
    labels.menu_storage=Storage
    labels.similar_doc_result_status=Similar results are displayed.
    labels.search_result_status_over=Results <b>{2}</b><span class="hidden-phone"> -</span> <b>{3}</b> of about <b>{1}</b> for <b>{0}</b>
    labels.search_related_queries=Related Words:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_label.properties

    labels.group_list_name=Name
    labels.group_name=Name
    labels.group_title_details=Group
    labels.related_content_configuration=Related Content
    labels.related_content_content=Content
    labels.related_content_list_term=Term
    labels.related_content_term=Term
    labels.related_content_title_details=Related Content
    labels.related_query_configuration=Related Query
    labels.related_query_list_term=Term
    labels.related_query_queries=Queries
    labels.related_query_term=Term
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. docs/metrics/v3.md

    |----------|----------------------------------------|
    | `/audit` | Metrics related to audit functionality |
    
    ### ILM metrics
    
    These are metrics about the minio ILM functionality
    
    | Path   | Description                          |
    |--------|--------------------------------------|
    | `/ilm` | Metrics related to ILM functionality |
    
    ### Logger webhook metrics
    
    These are metrics about the minio logger webhooks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

        // analysis indicate some control deps. Therefore, we will mark parallel
        // group and branch information here so that `UpdateControlDependenciesPass`
        // can fetch the related information later.
        if (!legacy_graph_export) {
          std::string group_annotation = absl::StrCat(
              "p", std::to_string(parallel_group_idx), ":", std::to_string(i));
          if (auto parallel_group_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/v1/defaults_test.go

    				},
    			},
    			expectLabels: true,
    		},
    		"All unspecified -> all pointers are defaulted and no default labels": {
    			original: &batchv1.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"mylabel": "myvalue"},
    				},
    				Spec: batchv1.JobSpec{
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{Labels: defaultLabels},
    					},
    				},
    			},
    			expected: &batchv1.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top