Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for has_name (0.93 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        from(components["java"])
        artifactId = moduleIdentity.baseName.get()
        versionMapping {
            usage("java-api") {
                fromResolutionResult()
            }
            usage("java-runtime") {
                fromResolutionResult()
            }
        }
    
        pom {
            packaging = "jar"
            name = moduleIdentity.baseName.map { "${project.group}:$it" }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    			fields: fields{
    				baseName:       "foo",
    				certificateDir: tmpdir,
    			},
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			rw := &pkiCertificateReadWriter{
    				baseName:       tt.fields.baseName,
    				certificateDir: tt.fields.certificateDir,
    			}
    			if got, _ := rw.Exists(); got != tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    mapping:
    	for _, m := range p.Mapping {
    		var noVolumeFile string
    		var baseName string
    		var dirName string
    		if m.File != "" {
    			noVolumeFile = strings.TrimPrefix(m.File, filepath.VolumeName(m.File))
    			baseName = filepath.Base(m.File)
    			dirName = filepath.Dir(noVolumeFile)
    		}
    
    		for _, path := range filepath.SplitList(searchPath) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    			return nil
    		}
    
    		if certData, intermediates, err := pkiutil.TryLoadCertChainFromDisk(data.CertificateDir(), cert.BaseName); err == nil {
    			certsphase.CheckCertificatePeriodValidity(cert.BaseName, certData)
    
    			caCertData, err := pkiutil.TryLoadCertFromDisk(data.CertificateDir(), caCert.BaseName)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. docs/orchestration/docker-compose/docker-compose.yaml

    # it through port 9000.
    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - data2-1:/data1
          - data2-2:/data2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    // can be a wildcard.
    func (sc *SidecarScope) ServicesForHostname(hostname host.Name) []*Service {
    	if !hostname.IsWildCarded() {
    		if svc, f := sc.servicesByHostname[hostname]; f {
    			return []*Service{svc}
    		}
    		return nil
    	}
    	services := make([]*Service, 0)
    	for _, svc := range sc.services {
    		if hostname.Matches(svc.Hostname) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeHostName, Address: "hostname-2"},
    				{Type: v1.NodeExternalDNS, Address: "hostname-1"},
    				{Type: v1.NodeInternalDNS, Address: "hostname-3"},
    				{Type: v1.NodeInternalIP, Address: "2.2.2.2"},
    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. buildscripts/upgrade-tests/compose.yml

    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
          - data1-3:/data3
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - data2-1:/data1
          - data2-2:/data2
          - data2-3:/data3
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.proto

      repeated bytes addresses = 3;
    
      // The hostname for the workload to be resolved by the ztunnel.
      // DNS queries are sent on-demand by default.
      // If the resolved DNS query has several endpoints, the request will be forwarded
      // to the first response.
      //
      // At a minimum, each workload must have either an address or hostname. For example,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top