Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for tnames (0.3 sec)

  1. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	for _, chain := range chains {
    		names := []string{}
    		for _, c := range chain {
    			names = append(names, c.Subject.String())
    		}
    		chainStrings = append(chainStrings, strings.Join(names, " -> "))
    	}
    	slices.Sort(chainStrings)
    	return chainStrings
    }
    
    func TestPathBuilding(t *testing.T) {
    	tests := []struct {
    		name           string
    		graph          trustGraphDescription
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    			t.Errorf("%s: output subject common name and template subject common name don't match", test.name)
    		} else if len(out.Subject.Organization) != len(template.Subject.Organization) {
    			t.Errorf("%s: output subject organisation and template subject organisation don't match", test.name)
    		} else if len(out.DNSNames) != len(template.DNSNames) {
    			t.Errorf("%s: output DNS names and template DNS names don't match", test.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
            int last = name.length() - 1;
            if( name.charAt( last ) == '/' ) {
                name = name.substring( 0, last );
            }
            if( context.share == null ) {
                this.unc = "\\";
            } else if( context.unc.equals( "\\" )) {
                this.unc = '\\' + name;
            } else {
                this.unc = context.unc + '\\' + name;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    $.Values) }} manifests/charts/gateway/templates/_helpers.tpl {{- define "gateway.name" -}} {{- if eq .Release.Name "RELEASE-NAME" -}} {{- .Values.name | default "istio-ingressgateway" -}} {{- else -}} {{- .Values.name | default .Release.Name | default "istio-ingressgateway" -}} {{- end -}} {{- end }} {{/* Create chart name and version as used by the chart label. */}} {{- define "gateway.chart" -}} {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} {{- end }}...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	for _, pkg := range pkgs {
    		if pkg.Name == "main" || (pkg.Name == "" && pkg.Error != nil) {
    			treatAsMain[pkg.ImportPath] = true
    			mains = append(mains, pkg)
    			continue
    		}
    
    		if len(pkg.InvalidGoFiles) > 0 { // TODO(#45999): && pkg.Name == "", but currently go/build sets pkg.Name arbitrarily if it is ambiguous.
    			// The package has (or may have) conflicting names, and we can't easily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "functions-have-names": "^1.2.2"
          },
          "engines": {
            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/functions-have-names": {
          "version": "1.2.3",
          "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    group=certificates.k8s.io resource=signers resourceName=<the signer name> verb=attest.\n\nIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons). For example, for the signer name `example.com/foo`, valid ClusterTrustBundle object names include `example.com:foo:abc` and `example.com:foo:v1`.\n\nIf signerName is empty, then the ClusterTrustBundle object's name must not have such a prefix.\n\nList/watch requests for ClusterTrustBundles...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "type": "string"
              },
              "name": {
                "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    		assert.Equal(t, tc.needsUpdate, needsUpdate, tc.name)
    		assert.Equal(t, tc.finalLabels, tc.existingNode.Labels, tc.name)
    	}
    }
    
    func TestUpdateDefaultResources(t *testing.T) {
    	cases := []struct {
    		name         string
    		initialNode  *v1.Node
    		existingNode *v1.Node
    		expectedNode *v1.Node
    		needsUpdate  bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top