Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 252 for toName (0.14 sec)

  1. src/cmd/cgo/internal/testshared/shared_test.go

    func TestNoTextrel(t *testing.T) {
    	globalSkip(t)
    	sopath := filepath.Join(gorootInstallDir, soname)
    	f, err := elf.Open(sopath)
    	if err != nil {
    		t.Fatal("elf.Open failed: ", err)
    	}
    	defer f.Close()
    	if hasDynTag(f, elf.DT_TEXTREL) {
    		t.Errorf("%s has DT_TEXTREL set", soname)
    	}
    }
    
    // The shared library does not contain symbols called ".dup"
    // (See golang.org/issue/14841.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    //
    // There are multiple nodes that represent a Func in the IR.
    //
    // The ONAME node (Func.Nname) is used for plain references to it.
    // The ODCLFUNC node (the Func itself) is used for its declaration code.
    // The OCLOSURE node (Func.OClosure) is used for a reference to a
    // function literal.
    //
    // An imported function will have an ONAME node which points to a Func
    // with an empty body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh_test.go

    			"foo": "bar",
    		}
    		orig, err := protomarshal.ToYAML(config)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if _, err := mesh.ApplyProxyConfig(`proxyMetadata: {"merged":"override","override":"bar"}`, config); err != nil {
    			t.Fatal(err)
    		}
    		after, err := protomarshal.ToYAML(config)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if orig != after {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/echotest/run.go

    		svc := svc
    
    		namespacedNames := svc.NamespacedNames()
    		var toNames []string
    		if includeNS {
    			toNames = namespacedNames.NamesWithNamespacePrefix()
    		} else {
    			toNames = namespacedNames.Names()
    		}
    
    		ctx.NewSubTestf("to %s", strings.Join(toNames, " ")).Run(func(ctx framework.TestContext) {
    			testFn(ctx, svc)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. helm/minio/templates/_helpers.tpl

    imagePullSecrets:
    {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
    {{- end }}
    {{- else if .Values.imagePullSecrets }}
    imagePullSecrets:
        {{ toYaml .Values.imagePullSecrets }}
    {{- end -}}
    {{- else if .Values.imagePullSecrets }}
    imagePullSecrets:
        {{ toYaml .Values.imagePullSecrets }}
    {{- end -}}
    {{- end -}}
    
    {{/*
    Formats volumeMount for MinIO TLS keys and trusted certs
    */}}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. test/fixedbugs/bug139.go

    func main() {
    	x := false;
    	func () { if x          { println(1); } }();  // this does not compile
    	func () { if x == false { println(2); } }();  // this works as expected
    }
    
    /*
    bug139.go:7: fatal error: naddr: ONAME class x 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 416 bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                "gateway.networking.k8s.io/gateway-name" .Name
                "istio.io/gateway-name" .Name
              ) | nindent 8 }}
        spec:
          securityContext:
          {{- if .Values.gateways.securityContext }}
            {{- toYaml .Values.gateways.securityContext | nindent 8 }}
          {{- else }}
            sysctls:
            - name: net.ipv4.ip_unprivileged_port_start
              value: "0"
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pkg/kube/inject/template.go

    		"valueOrDefault":      valueOrDefault,
    		"toJSON":              toJSON,
    		"fromJSON":            fromJSON,
    		"structToJSON":        structToJSON,
    		"protoToJSON":         protoToJSON,
    		"toYaml":              toYaml,
    		"indent":              indent,
    		"directory":           directory,
    		"contains":            flippedContains,
    		"toLower":             strings.ToLower,
    		"appendMultusNetwork": appendMultusNetwork,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                try {
                    return TimestampConversionUtil.toDate(arg);
                } catch (final ParseRuntimeException ex) {
                    try {
                        return DateConversionUtil.toDate(arg);
                    } catch (final ParseRuntimeException ex2) {
                        return TimeConversionUtil.toDate(arg);
                    }
                }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    			}}},
    	}
    
    	// Test PrintObj() success.
    	for pName, p := range genericPrinters {
    		for oName, obj := range objects {
    			b := &bytes.Buffer{}
    			if err := p.PrintObj(obj, b); err != nil {
    				t.Errorf("printer '%v', object '%v'; error: '%v'", pName, oName, err)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top