Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for myname (0.18 sec)

  1. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		kind schema.GroupKind
    		name string
    		want string
    	}{
    		{schema.GroupKind{}, "", ""},
    		{schema.GroupKind{}, "name", "name"},
    		{schema.GroupKind{Kind: "Kind"}, "", "kind/"}, // should not happen in practice
    		{schema.GroupKind{Kind: "Kind"}, "name", "kind/name"},
    		{schema.GroupKind{Group: "group", Kind: "Kind"}, "name", "kind.group/name"},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    		return fmt.Errorf("closing meta data temp file: %v", err)
    	}
    
    	// Temp file has now been flushed and closed. Rename the temp to the
    	// final desired path.
    	if err := os.Rename(s.mftmp, s.mfname); err != nil {
    		return fmt.Errorf("writing %s: rename from %s failed: %v\n", s.mfname, s.mftmp, err)
    	}
    
    	return nil
    }
    
    // needMetaDataFile returns TRUE if we need to emit a meta-data file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.podFailurePolicy.rules[0].onPodConditions[0].type: Invalid value: "Invalid Condition Type": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. src/net/hosts.go

    	hosts.Lock()
    	defer hosts.Unlock()
    	readHosts()
    	if len(hosts.byName) != 0 {
    		if hasUpperCase(host) {
    			lowerHost := []byte(host)
    			lowerASCIIBytes(lowerHost)
    			host = string(lowerHost)
    		}
    		if byName, ok := hosts.byName[absDomainName(host)]; ok {
    			ipsCp := make([]string, len(byName.addrs))
    			copy(ipsCp, byName.addrs)
    			return ipsCp, byName.canonicalName
    		}
    	}
    	return nil, ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "name",
              "expression"
            ],
            "type": "object"
          },
          "io.k8s.api.admissionregistration.v1beta1.MatchResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.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 Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultImmutableModuleIdentifierFactory.java

        @Override
        public ModuleIdentifier module(String group, String name) {
            Map<String, ModuleIdentifier> byName = groupIdToModules.get(group);
            if (byName == null) {
                byName = groupIdToModules.computeIfAbsent(group, k -> new ConcurrentHashMap<>());
            }
            ModuleIdentifier moduleIdentifier = byName.get(name);
            if (moduleIdentifier == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/minio-dashboard.json

            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "target": {
              "limit": 100,
              "matchAny": false,
              "tags": [],
              "type": "dashboard"
            },
            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "", 
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  9. src/internal/coverage/encodemeta/encodefile.go

    type CoverageMetaFileWriter struct {
    	stab   stringtab.Writer
    	mfname string
    	w      *bufio.Writer
    	tmp    []byte
    	debug  bool
    }
    
    func NewCoverageMetaFileWriter(mfname string, w io.Writer) *CoverageMetaFileWriter {
    	r := &CoverageMetaFileWriter{
    		mfname: mfname,
    		w:      bufio.NewWriter(w),
    		tmp:    make([]byte, 64),
    	}
    	r.stab.InitWriter()
    	r.stab.Lookup("")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/upper/tests/upper.out

    Original: mY_nAmE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
Back to top