Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 234 for myname (0.12 sec)

  1. src/cmd/go/internal/base/goflags.go

    				continue
    			}
    			Fatalf("go: parsing $GOFLAGS: non-flag %q", f)
    		}
    
    		name := f[1:]
    		if name[0] == '-' {
    			name = name[1:]
    		}
    		if i := strings.Index(name, "="); i >= 0 {
    			name = name[:i]
    		}
    		if !hasFlag(Go, name) {
    			if hideErrors {
    				continue
    			}
    			Fatalf("go: parsing $GOFLAGS: unknown flag -%s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                    buildProjectClassTimes[it.asId(MASTER_CHECK_CONFIGURATION)]
                }?.also {
                    println("No test statistics found for ${testCoverage.asName()} (${testCoverage.uuid}), re-using the data from ${foundTestCoverage.asName()} (${foundTestCoverage.uuid})")
                }
            }
        }
    }
    
    fun onlyNativeSubprojectsForIntelMacs(
        testCoverage: TestCoverage,
        subprojectName: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else}}
      - emptyDir: {}
        name: workload-certs
      {{- end }}
      # SDS channel between istioagent and Envoy
      - emptyDir:
          medium: Memory
        name: istio-envoy
      - name: istio-data
        emptyDir: {}
      - name: istio-podinfo
        downwardAPI:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/correct-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc4
      namespace: nginx-ns4
    spec:
      externalName: nginx.example.com
      ports:
      - name: https
        port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 218 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    // PC-relative addresses into absolute ones.
    // The symname function queries the symbol table for the program
    // being disassembled. It returns the name and base address of the symbol
    // containing the target, if any; otherwise it returns "", 0.
    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64)) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx
      namespace: nginx-ns
    spec:
      externalName: nginx.example.com
      ports:
      - name: nginx
        port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc2
      namespace: nginx-ns2
    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        name: workload-socket
      {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else }}
      - emptyDir:
        name: workload-certs
      {{- end }}
      {{- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) }}
      - name: custom-bootstrap-volume
        configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs.go

    	if certSpec.CAName != caCertSpec.Name {
    		return errors.Errorf("expected CAname for %s to be %q, but was %s", certSpec.Name, certSpec.CAName, caCertSpec.Name)
    	}
    
    	caCert, caKey, err := LoadCertificateAuthority(cfg.CertificatesDir, caCertSpec.BaseName)
    	if err != nil {
    		return errors.Wrapf(err, "couldn't load CA certificate %s", caCertSpec.Name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. samples/addons/grafana.yaml

            - name: config
              configMap:
                name: grafana
            - name: dashboards-istio
              configMap:
                name: istio-grafana-dashboards
            - name: dashboards-istio-services
              configMap:
                name: istio-services-grafana-dashboards
            - name: storage
              emptyDir: {}
    
    ---
    
    apiVersion: v1
    data:
      istio-performance-dashboard.json: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      - name: gke-workload-certificate
        csi:
          driver: workloadcertificates.security.cloud.google.com
      {{- else}}
      - emptyDir: {}
        name: workload-certs
      {{- end }}
      # SDS channel between istioagent and Envoy
      - emptyDir:
          medium: Memory
        name: istio-envoy
      - name: istio-data
        emptyDir: {}
      - name: istio-podinfo
        downwardAPI:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top