Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 416 for fnName (0.36 sec)

  1. src/cmd/compile/internal/test/testdata/arithConst_test.go

    	test_uint64{fn: add_uint64_0, fnname: "add_uint64_0", in: 18446744073709551615, want: 18446744073709551615},
    	test_uint64{fn: add_1_uint64, fnname: "add_1_uint64", in: 0, want: 1},
    	test_uint64{fn: add_uint64_1, fnname: "add_uint64_1", in: 0, want: 1},
    	test_uint64{fn: add_1_uint64, fnname: "add_1_uint64", in: 1, want: 2},
    	test_uint64{fn: add_uint64_1, fnname: "add_uint64_1", in: 1, want: 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 633.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		pass.ReportRangef(at, "%s has type parameters: it will not be run by go test as a %sXXX function", fn.Name.Name, prefix)
    	}
    
    	if !isTestSuffix(fn.Name.Name[len(prefix):]) {
    		pass.ReportRangef(fn.Name, "%s has malformed name: first letter after '%s' must not be lowercase", fn.Name.Name, prefix)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    						// log.Printf("%s:%d: [%s] cannot check cross-package assembly function: %s is in package %s", fname, lineno, arch, fnName, pkgPath)
    						fn = nil
    						fnName = ""
    						abi = ""
    						continue
    					}
    				}
    				// Trim off optional ABI selector.
    				fnName, abi = trimABI(fnName)
    				flag := m[3]
    				fn = knownFunc[fnName][arch]
    				if fn != nil {
    					size, _ := strconv.Atoi(m[5])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/gen/arithConstGen.go

    		test_{{.Size}}{fn: {{.Name}}_{{.FNumber}}_{{.Type_}}, fnname: "{{.Name}}_{{.FNumber}}_{{.Type_}}", in: {{.Input}}, want: {{.Ans}}},`))
    
    	vrf2 := template.Must(template.New("vrf2").Parse(`
    		test_{{.Size}}{fn: {{.Name}}_{{.Type_}}_{{.FNumber}}, fnname: "{{.Name}}_{{.Type_}}_{{.FNumber}}", in: {{.Input}}, want: {{.Ans}}},`))
    
    	type cfncData struct {
    		Size, Name, Type_, Symbol, FNumber, Number string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/builtin.go

    	if size.Type().IsKind(types.TIDEAL) || size.Type().Size() <= types.Types[types.TUINT].Size() {
    		fnname = "makechan"
    		argtype = types.Types[types.TINT]
    	}
    
    	return mkcall1(chanfn(fnname, 1, n.Type()), n.Type(), init, reflectdata.MakeChanRType(base.Pos, n), typecheck.Conv(size, argtype))
    }
    
    // walkMakeMap walks an OMAKEMAP node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/convert.go

    			n = copyExpr(n, fromType, init)
    		}
    		fn = typecheck.LookupRuntime(fnname, fromType)
    		args = []ir.Node{reflectdata.ConvIfaceSrcRType(base.Pos, conv), typecheck.NodAddr(n)}
    	} else {
    		// Use a specialized conversion routine that takes the type being
    		// converted by value, not by pointer.
    		fn = typecheck.LookupRuntime(fnname)
    		var arg ir.Node
    		switch {
    		case fromType == argType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    
    	for _, testCase := range testCases {
    		fnName := runtime.FuncForPC(reflect.ValueOf(testCase.fn).Pointer()).Name()
    		if i := strings.LastIndex(fnName, "."); i != -1 {
    			fnName = fnName[i+1:]
    		}
    		testObj := testCase.obj
    		testFn := testCase.fn
    		runTestOverPVCRetentionPolicies(
    			t,
    			fmt.Sprintf("%s/Monotonic", fnName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    			func() {
    				defer func() { recover() }()
    				if m.Call(nil)[0].Bool() {
    					name := strings.TrimSuffix(tm.Name, "_")
    					fmt.Fprintf(w, " %s", name)
    				}
    			}()
    		}
    	}
    
    	if n.Op() == OCLOSURE {
    		n := n.(*ClosureExpr)
    		if fn := n.Func; fn != nil && fn.Nname.Sym() != nil {
    			fmt.Fprintf(w, " fnName(%+v)", fn.Nname.Sym())
    		}
    	}
    
    	if n.Type() != nil {
    		if n.Op() == OTYPE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FqName.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface FqName : Serializable {
        val packageName: String
        val simpleName: String
        val qualifiedName: String
    
        companion object Empty : FqName {
            override val packageName: String
                get() = ""
            override val simpleName: String
                get() = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NetworkExplorer.java

                return f1.isDirectory() ? -1 : 1;
            }
            f2name = f2.getName();
            if ( f1.isDirectory() ) {
                return f1name.compareToIgnoreCase(f2name);
            }
            i = f1name.lastIndexOf('.');
            t1 = i == -1 ? "" : f1name.substring(i + 1);
            i = f2name.lastIndexOf('.');
            t2 = i == -1 ? "" : f2name.substring(i + 1);
    
            i = t1.compareToIgnoreCase(t2);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
Back to top