Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for experts (0.15 sec)

  1. src/cmd/compile/internal/ssa/debug_test.go

    	return s.tagg
    }
    
    func (s *delveState) stepnext(ss string) bool {
    	x := s.ioState.writeReadExpect(ss+"\n", "[(]dlv[)] ")
    	excerpts := s.atLineRe.FindStringSubmatch(x.o)
    	locations := s.funcFileLinePCre.FindStringSubmatch(x.o)
    	excerpt := ""
    	if len(excerpts) > 1 {
    		excerpt = excerpts[1]
    	}
    	if len(locations) > 0 {
    		fn := canonFileName(locations[2])
    		if *verbose {
    			if s.file != fn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        }
        javaLauncher = launcher
        if (jvmVersionForTest().canCompileOrRun(9)) {
            // Required by JdkTools and JdkJavaCompiler
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED"))
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"))
    
            if (isUnitTest() || usesEmbeddedExecuter()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                "package c; public class C {}"
            file("src/main/${language.name}/module-info.${language.name}").text = """
                module impl {
                    exports a;
                    exports b;
                    exports c;
                }
            """
            succeeds language.compileTaskName
            outputs.recompiledClasses("A", "B", "C", "module-info")
    
            when:
            outputs.snapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    	WSAENOPROTOOPT            Errno = 10042
    	WSAECONNABORTED           Errno = 10053
    	WSAECONNRESET             Errno = 10054
    )
    
    const (
    	// Invented values to support what package os expects.
    	O_RDONLY   = 0x00000
    	O_WRONLY   = 0x00001
    	O_RDWR     = 0x00002
    	O_CREAT    = 0x00040
    	O_EXCL     = 0x00080
    	O_NOCTTY   = 0x00100
    	O_TRUNC    = 0x00200
    	O_NONBLOCK = 0x00800
    	O_APPEND   = 0x00400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/strconv/ftoa.go

    		flt = &float64info
    	default:
    		panic("strconv: illegal AppendFloat/FormatFloat bitSize")
    	}
    
    	neg := bits>>(flt.expbits+flt.mantbits) != 0
    	exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
    	mant := bits & (uint64(1)<<flt.mantbits - 1)
    
    	switch exp {
    	case 1<<flt.expbits - 1:
    		// Inf, NaN
    		var s string
    		switch {
    		case mant != 0:
    			s = "NaN"
    		case neg:
    			s = "-Inf"
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins0.go

    	n3 := copy(b, "Hello, World!")  // n3 == 5, b == []byte("Hello")
    	_, _, _ = n1, n2, n3
    
    	var t [][]int
    	copy(t, t)
    	copy(t /* ERROR "copy expects slice arguments" */ , nil)
    	copy(nil /* ERROR "copy expects slice arguments" */ , t)
    	copy(nil /* ERROR "copy expects slice arguments" */ , nil)
    	copy(t... /* ERROR "invalid use of ..." */ )
    }
    
    func copy2() {
    	f1 := func() (a []int) { return }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_darwin.go

    	skip, err := Seek(fd, 0, 1 /* SEEK_CUR */)
    	if err != nil {
    		return 0, err
    	}
    
    	// We need to duplicate the incoming file descriptor
    	// because the caller expects to retain control of it, but
    	// fdopendir expects to take control of its argument.
    	// Just Dup'ing the file descriptor is not enough, as the
    	// result shares underlying state. Use openat to make a really
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/deadcode.go

    		names = append(names, objabi.PathToPrefix(*flagPluginPath)+"..inittask", objabi.PathToPrefix(*flagPluginPath)+".main", "go:plugin.tabs")
    
    		// We don't keep the go.plugin.exports symbol,
    		// but we do keep the symbols it refers to.
    		exportsIdx := d.ldr.Lookup("go:plugin.exports", 0)
    		if exportsIdx != 0 {
    			relocs := d.ldr.Relocs(exportsIdx)
    			for i := 0; i < relocs.Count(); i++ {
    				d.mark(relocs.At(i).Sym(), 0)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter_test.go

    				if !strings.Contains(got, want) {
    					t.Errorf(`Package("exports").Imports() = %s, does not contain %s`, got, want)
    				}
    			}
    		}
    	}
    }
    
    func TestImportTypeparamTests(t *testing.T) {
    	if testing.Short() {
    		t.Skipf("in short mode, skipping test that requires export data for all of std")
    	}
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    // At runtime, Gradle expects each Gradle jar to have a classpath manifest
    val emptyClasspathManifest by tasks.registering(ClasspathManifest::class) {
        this.manifestFile = generatedPropertiesFileFor("$runtimeApiJarName-classpath")
    }
    
    // At runtime, Gradle expects to have instrumentation metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top