Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for indir (0.05 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

            dir.file(PROCESSOR_DECLARATION) << "InDir"
            dir.file(INCREMENTAL_PROCESSOR_DECLARATION) << "InDir,BAR"
            def cp = files(jar, dir)
    
            expect:
            detector.detectProcessors(cp).values().asList() == [
                new AnnotationProcessorDeclaration("InJar", IncrementalAnnotationProcessorType.UNKNOWN),
                new AnnotationProcessorDeclaration("InDir", IncrementalAnnotationProcessorType.UNKNOWN)
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    // encoded integer, followed by the field data in its appropriate
    // format.
    
    // encIndirect dereferences pv indir times and returns the result.
    func encIndirect(pv reflect.Value, indir int) reflect.Value {
    	for ; indir > 0; indir-- {
    		if pv.IsNil() {
    			break
    		}
    		pv = pv.Elem()
    	}
    	return pv
    }
    
    // encBool encodes the bool referenced by v as an unsigned 0 or 1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file('in.txt').touch()
            def inDir = file("in-dir").createDir()
            inDir.file("file").createFile()
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            Files.move(inDir.toPath(), copy.toPath(), StandardCopyOption.ATOMIC_MOVE)
            inDir.deleteDir()
            inDir.createLink(copy)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. test/escape_param.go

    	r := &Indir{} // ERROR "&Indir{} does not escape$"
    	r.param12(&p)
    	_ = r
    }
    
    func caller12c() {
    	i := 0  // ERROR "moved to heap: i$"
    	p := &i // ERROR "moved to heap: p$"
    	r := Indir{}
    	r.param12(&p)
    	sink = r
    }
    
    func caller12d() {
    	i := 0  // ERROR "moved to heap: i$"
    	p := &i // ERROR "moved to heap: p$"
    	r := Indir{}
    	r.param12(&p)
    	sink = **r.p
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    		}
    		if ut.indir%2 == 0 {
    			slowpoke = slowpoke.Elem()
    		}
    		ut.indir++
    	}
    
    	if ok, indir := implementsInterface(ut.user, gobEncoderInterfaceType); ok {
    		ut.externalEnc, ut.encIndir = xGob, indir
    	} else if ok, indir := implementsInterface(ut.user, binaryMarshalerInterfaceType); ok {
    		ut.externalEnc, ut.encIndir = xBinary, indir
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. operator/pkg/manifest/shared_test.go

    			overlays: []string{"yaml_layer1", "yaml_layer2", "yaml_layer3"},
    			wantErr:  false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(fmt.Sprintf("%s stdin=%v", tt.name, tt.stdin), func(t *testing.T) {
    			inDir := filepath.Join(testDataDir, "input")
    			outPath := filepath.Join(testDataDir, "output", tt.name+".yaml")
    			wantBytes, err := os.ReadFile(outPath)
    			want := string(wantBytes)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/covdata/doc.go

    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    	$ go tool covdata subtract -i=indir1,indir2 -o=outdir
    	$
    
    7. Intersect profiles
    
    	$ go tool covdata intersect -i=indir1,indir2 -o=outdir
    	$
    
    8. Dump a profile for debugging purposes.
    
    	$ go tool covdata debugdump -i=indir
    	<human readable output>
    	$
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/search/search.go

    }
    
    // InDir checks whether path is in the file tree rooted at dir.
    // If so, InDir returns an equivalent path relative to dir.
    // If not, InDir returns an empty string.
    // InDir makes some effort to succeed even in the presence of symbolic links.
    func InDir(path, dir string) string {
    	// inDirLex reports whether path is lexically in dir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    // is either a pointer to the value (of type t), or the value itself,
    // depending on indir. The top parameter is whether we are at the top
    // level, where Go pointers are allowed. Go pointers to pinned objects are
    // allowed as long as they don't reference other unpinned pointers.
    func cgoCheckArg(t *_type, p unsafe.Pointer, indir, top bool, msg string) {
    	if !t.Pointers() || p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    	return dir
    }
    
    const debugtrace = false
    
    func gobuild(t *testing.T, indir string, bargs []string) {
    	t.Helper()
    
    	if debugtrace {
    		if indir != "" {
    			t.Logf("in dir %s: ", indir)
    		}
    		t.Logf("cmd: %s %+v\n", testenv.GoToolPath(t), bargs)
    	}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    	cmd.Dir = indir
    	b, err := cmd.CombinedOutput()
    	if len(b) != 0 {
    		t.Logf("## build output:\n%s", b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top