Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for srcFile (0.34 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        outputs.upToDateWhen { isUpToDate.get() }
        doFirst { }
    }
    task nothing {
        outputs.upToDateWhen { isUpToDate.get() }
        doFirst { }
    }
    """
            TestFile srcFile = file(inputFileName)
            srcFile.text = 'content'
    
            when:
            succeeds "inputsAndOutputs"
    
            then:
            result.assertTasksNotSkipped(":inputsAndOutputs")
    
            // Is up to date
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/cshared_test.go

    	println(42)
    }
    
    //export GoFunc2
    func GoFunc2() {
    	println(24)
    }
    
    func main() {
    }
    `
    
    	tmpdir := t.TempDir()
    
    	srcfile := filepath.Join(tmpdir, "test.go")
    	objfile := filepath.Join(tmpdir, "test.dll")
    	if err := os.WriteFile(srcfile, []byte(prog), 0666); err != nil {
    		t.Fatal(err)
    	}
    	argv := []string{"build", "-buildmode=c-shared"}
    	if exportAllSymbols {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    	if strings.ContainsAny(srcfile, "\r\n") {
    		// This should have been checked when the file path was first resolved,
    		// but we double check here just to be sure.
    		fatalf("internal error: writeOutput: srcfile contains unexpected newline character: %q", srcfile)
    	}
    	fmt.Fprintf(fgo1, "//line %s:1:1\n", srcfile)
    	fgo1.Write(f.Edit.Bytes())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/testsupport.go

    				// these in the existing format).
    				if u.Parent != 0 {
    					continue
    				}
    				count := uint32(0)
    				if haveCounters {
    					count = counters[i]
    				}
    				ts.cf.AddUnit(fd.Srcfile, fd.Funcname, fd.Lit, u, count)
    			}
    		}
    	}
    	return nil
    }
    
    type pkfunc struct {
    	pk, fcn uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/coverage/defs.go

    // if we want to capture a post-inlining view of the world, the
    // representations of source positions would need to be a good deal more
    // complicated.
    type FuncDesc struct {
    	Funcname string
    	Srcfile  string
    	Units    []CoverableUnit
    	Lit      bool // true if this is a function literal
    }
    
    // CoverableUnit describes the source characteristics of a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            when:
            execute(task)
    
            then:
            def e = thrown WorkValidationException
            validateException(task, e, missingValueMessage { property('srcFile').includeLink() })
        }
    
        def validationFailureListsViolationsForAllProperties() {
            given:
            def task = expectTaskCreated(TaskWithMultipleProperties, [null] as Object[])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	// for more details.
    	if pkgconfig.Local {
    		filename = f.name
    	}
    
    	// Hand off function to meta-data builder.
    	fd := coverage.FuncDesc{
    		Funcname: funcname,
    		Srcfile:  filename,
    		Units:    f.fn.units,
    		Lit:      flit,
    	}
    	funcId := f.mdb.AddFunc(fd)
    
    	hookWrite := func(cv string, which int, val string) string {
    		return fmt.Sprintf("%s[%d] = %s", cv, which, val)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
        AssertHelperData(TestPartResult::Type t,
                         const char* srcfile,
                         int line_num,
                         const char* msg)
            : type(t), file(srcfile), line(line_num), message(msg) { }
    
        TestPartResult::Type const type;
        const char* const file;
        int const line;
        std::string const message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // reserves stack space for another AssertHelper.
      struct AssertHelperData {
        AssertHelperData(TestPartResult::Type t,
                         const char* srcfile,
                         int line_num,
                         const char* msg)
            : type(t), file(srcfile), line(line_num), message(msg) { }
    
        TestPartResult::Type const type;
        const char* const file;
        int const line;
        std::string const message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/src_file.txt

    Russ Cox <******@****.***> 1673623316 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:23 UTC 2023
    - 202 bytes
    - Viewed (0)
Back to top