Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for renameat (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    //sys	Pause() (err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
    //sys	Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)
    //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_RenameatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Renameat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_Renameat2Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Renameat2(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. test/rename1.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify that renamed identifiers no longer have their old meaning.
    // Does not compile.
    
    package main
    
    func main() {
    	var n byte         // ERROR "not a type|expected type"
    	var y = float32(0) // ERROR "cannot call|expected function"
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:07:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIncrementalBuildIntegrationTest.groovy

        def "cleans up stale object files when source file renamed"() {
            def oldObjFile = objectFileFor(asmSourceFile, "build/objs/hello/shared/helloAsm")
            def newObjFile = objectFileFor(file('src/hello/asm/changed_sum.s'), "build/objs/hello/shared/helloAsm")
            assert oldObjFile.file
            assert !newObjFile.file
    
            when:
            asmSourceFile.renameTo(file("src/hello/asm/changed_sum.s"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

                }
            };
        }
    
        /**
         * Generic transform class that rename the source of the before element.
         */
        protected static abstract class AbstractRenameTransform implements Transform {
            public static final String DEFAULT_RENAME_PREFIX = "renamed-";
            private final SourceFile sourceFile;
            private final SourceFile destinationFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. cmd/os-reliable_test.go

    	if err = renameAll("foo", "", ""); err != errInvalidArgument {
    		t.Fatal(err)
    	}
    	if err = renameAll(pathJoin(path, "testvolume1"), pathJoin(path, "testvolume2"), ""); err != nil {
    		t.Fatal(err)
    	}
    	if err = renameAll(pathJoin(path, "testvolume1"), pathJoin(path, "testvolume2"), ""); err != errFileNotFound {
    		t.Fatal(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-diff.go

    	cmd.PersistentFlags().StringVar(&diffArgs.renameResources, "rename", "",
    		"Rename resources before comparison.\n"+
    			"The format of each renaming pair is A->B, all renaming pairs are comma separated.\n"+
    			"e.g. Service:*:istiod->Service:*:istio-control - rename istiod service into istio-control")
    }
    
    func manifestDiffCmd(diffArgs *manifestDiffArgs) *cobra.Command {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

            }
    
            then:
            eclipseProject.projectDependencies.size() == 2
            eclipseProject.projectDependencies.find { it.path == 'b1-renamed' }
    
            and:
            eclipseProject.projectDependencies.find { it.path == 'b2-renamed' }
        }
    
        def "Idea model has dependencies substituted in composite"() {
            when:
            def ideaModule = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            then:
            eclipseProject.projectDependencies.collect {it.path}.sort()  == ['b1-renamed', 'b2-renamed']
        }
    
        def "Idea model has dependencies substituted in composite"() {
            when:
            def ideaModule = loadToolingModel(IdeaProject).modules[0]
    
            then:
            ideaModule.dependencies.size() == 1
            with(ideaModule.dependencies.first()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. cmd/preferredimports/preferredimports.go

    	//   given: package foo; import foo "bar"; foo.Baz, rename foo->qux
    	//   yield: package foo; import qux "bar"; qux.Baz
    	var pkg *ast.Ident
    
    	// Rename top-level old to new, both unresolved names
    	// (probably defined in another file) and names that resolve
    	// to a declaration we renamed.
    	ast.Inspect(f, func(node ast.Node) bool {
    		if node == nil {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top