Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for Tdname (0.12 sec)

  1. src/internal/coverage/cfile/emit.go

    		return fmt.Errorf("closing counter data file: %v", err)
    	}
    
    	// Counter file has now been closed. Rename the temp to the
    	// final desired path.
    	if err := os.Rename(s.cftmp, s.cfname); err != nil {
    		return fmt.Errorf("writing %s: rename from %s failed: %v\n", s.cfname, s.cftmp, err)
    	}
    
    	return nil
    }
    
    // emitCounterDataToWriter emits counter data for this coverage run to an io.Writer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim: testClaim(goodName, goodNS, goodClaimSpec),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    			resources:    testResources([]resourceapi.NamedResourcesInstance{{Name: badName}}),
    		},
    		"duplicate-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    		if bo&0x17 == 4 { // jump only a CR bit set/unset, no hints (at bits) set.
    			if bi >= 4 {
    				return fmt.Sprintf("B%s CR%d,%s", bcname, bi>>2, args[2])
    			} else {
    				return fmt.Sprintf("B%s %s", bcname, args[2])
    			}
    		}
    		return op + " " + strings.Join(args, ",")
    	case BCCTR:
    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. src/cmd/fix/fix.go

    				d.Name.Name = new
    				d.Name.Obj.Name = new
    				fixed = true
    			}
    		case *ast.GenDecl:
    			for _, s := range d.Specs {
    				switch s := s.(type) {
    				case *ast.TypeSpec:
    					if s.Name.Name == old {
    						s.Name.Name = new
    						s.Name.Obj.Name = new
    						fixed = true
    					}
    				case *ast.ValueSpec:
    					for _, n := range s.Names {
    						if n.Name == old {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/configset.go

    func (h *handler) fromConfigMap(client clientset.Interface, cmName, cmKey string, mustExist bool) (kubeadmapi.ComponentConfig, error) {
    	configMap, err := apiclient.GetConfigMapWithShortRetry(client, metav1.NamespaceSystem, cmName)
    	if err != nil {
    		if !mustExist && (apierrors.IsNotFound(err) || apierrors.IsForbidden(err)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "foo",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName: "bar",
    			},
    		},
    	}
    	volWithNoRestriction := v1.Volume{
    		Name:         "volume with no restriction",
    		VolumeSource: v1.VolumeSource{},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
          ) | nindent 4 }}
      name: {{.DeploymentName | quote}}
      namespace: {{.Namespace | quote}}
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: {{.Name}}
        uid: {{.UID}}
    spec:
      ports:
      {{- range $key, $val := .Ports }}
      - name: {{ $val.Name | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. 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)
Back to top