Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for myname (0.22 sec)

  1. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "",
          "type": "datasource",
          "pluginId": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/crypto/x509/cert_pool.go

    func (s *CertPool) Clone() *CertPool {
    	p := &CertPool{
    		byName:     make(map[string][]int, len(s.byName)),
    		lazyCerts:  make([]lazyCert, len(s.lazyCerts)),
    		haveSum:    make(map[sum224]bool, len(s.haveSum)),
    		systemPool: s.systemPool,
    	}
    	for k, v := range s.byName {
    		indexes := make([]int, len(v))
    		copy(indexes, v)
    		p.byName[k] = indexes
    	}
    	for k := range s.haveSum {
    		p.haveSum[k] = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "name",
              "expression"
            ],
            "type": "object"
          },
          "io.k8s.api.admissionregistration.v1alpha1.MatchResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	ents       []HeaderField
    	evictCount uint64
    
    	// byName maps a HeaderField name to the unique id of the newest entry with
    	// the same name. See above for a definition of "unique id".
    	byName map[string]uint64
    
    	// byNameValue maps a HeaderField name/value pair to the unique id of the newest
    	// entry with the same name and value. See above for a definition of "unique id".
    	byNameValue map[pairNameValue]uint64
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "",
          "type": "datasource",
          "pluginId": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. src/reflect/visiblefields.go

    				// cancel one another out. Set the field name
    				// to empty to signify that has happened, and
    				// there's no need to add this field.
    				old.Name = ""
    				add = false
    			} else if len(w.index) < len(old.Index) {
    				// The old field loses because it's deeper than the new one.
    				old.Name = ""
    			} else {
    				// The old field wins because it's shallower than the new one.
    				add = false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        bool b_is_resource = (b->output_type(0) == DT_RESOURCE);
        // Uses the name as a tiebreaker so the output is deterministic.
        StringPiece a_name(a->name());
        StringPiece b_name(b->name());
        return std::tie(a_is_resource, a_name) < std::tie(b_is_resource, b_name);
      });
    
      // Sorts the retvals by name so the order is deterministic.
      std::sort(retvals.begin(), retvals.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FqName.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface FqName : Serializable {
        val packageName: String
        val simpleName: String
        val qualifiedName: String
    
        companion object Empty : FqName {
            override val packageName: String
                get() = ""
            override val simpleName: String
                get() = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltatest.go

    	deleted := sets.New(resp.RemovedResources...)
    	byName := map[string]*discovery.Resource{}
    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    		if replaced := byName[m.Name]; replaced != nil {
    			res = append(res, replaced)
    			delete(byName, m.Name)
    			continue
    		}
    		res = append(res, m)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/dwtest/dwtest.go

    		ex.dies = append(ex.dies, entry)
    		if _, found := ex.idxByOffset[entry.Offset]; found {
    			return errors.New("DIE clash on offset")
    		}
    		ex.idxByOffset[entry.Offset] = idx
    		if name, ok := entry.Val(dwarf.AttrName).(string); ok {
    			ex.byname[name] = append(ex.byname[name], idx)
    		}
    		if len(nesting) > 0 {
    			parent := nesting[len(nesting)-1]
    			ex.kids[parent] = append(ex.kids[parent], idx)
    			ex.parent[idx] = parent
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top