Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 390 for renameat (0.22 sec)

  1. src/syscall/syscall_openbsd_ppc64.go

    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 906 bytes
    - Viewed (0)
  2. src/syscall/syscall_openbsd_riscv64.go

    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 906 bytes
    - Viewed (0)
  3. src/syscall/syscall_openbsd_mips64.go

    	cmsg.Len = uint32(length)
    }
    
    // RTM_LOCK only exists in OpenBSD 6.3 and earlier.
    const RTM_LOCK = 0x8
    
    // SYS___SYSCTL only exists in OpenBSD 5.8 and earlier, when it was
    // was renamed to SYS_SYSCTL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:09:41 UTC 2022
    - 970 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFrameworkIntegrationTest.groovy

                public class NotATest {}
            """
        }
    
        @Override
        void renameTests() {
            def newTest = file("src/test/java/NewTest.java")
            file('src/test/java/SomeOtherTest.java').renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "test"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

                'nestedDir/nestedDirFile2.txt'
            )
            and:
            lowercaseDir.renameTo(uppercaseDir)
    
            def uppercaseNestedDir = new File(uppercaseDir, 'NESTEDDIR')
            new File(uppercaseDir, 'nestedDir').renameTo(uppercaseNestedDir)
            new File(uppercaseNestedDir, 'nestedDirFile2.txt').renameTo(new File(uppercaseNestedDir, 'NESTEDDIRFILE2.TXT'))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            file("lib1.jar").renameTo(file("lib1-renamed.jar"))
            buildFile.text = buildScriptWithClasspath("lib1-renamed.jar", "lib2.jar")
    
            run "compile"
            then:
            skipped ":compile"
        }
    
        def buildScriptWithClasspath(String... dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerRequirement.java

     */
    
    package org.gradle.workers.internal;
    
    import java.io.File;
    
    /**
     * Represents the directories a worker needs to understand in order to execute.
     *
     * TODO: This, and its subclasses, should probably be renamed to indicate that it is only about directories (for now)
     */
    public interface WorkerRequirement {
        /**
         * Returns the directory in which to execute new workers.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

    # Check and rename wheels with auditwheel. Inserts the platform tags like
    # "manylinux_xyz" into the wheel filename.
    set -euxo pipefail
    
    for wheel in /tf/pkg/*.whl; do
      echo "Checking and renaming $wheel..."
      time python3 -m auditwheel repair --plat manylinux2014_aarch64 "$wheel" --wheel-dir /tf/pkg 2>&1 | tee check.txt
    
      # We don't need the original wheel if it was renamed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/cc_op_gen.cc

        const auto& api_def_arg(op_info.api_def.in_arg(i));
        strings::StrAppend(
            &body, "  auto _", api_def_arg.rename_to(), " = ::tensorflow::ops::",
            ArgIsList(arg) ? "AsNodeOutList" : "AsNodeOut", "(", scope_str, ", ",
            AvoidCPPKeywords(api_def_arg.rename_to()), ");\n");
        strings::StrAppend(&body, "  ", return_on_error, "\n");
      }
    
      strings::StrAppend(&body, "  ::tensorflow::Node* ret;\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppElement.java

        /**
         * Returns a transform that rename the before element to {@code renamed-} followed by the original name.
         */
        protected static Transform rename(CppSourceFileElement beforeElement) {
            return rename(beforeElement, AbstractRenameTransform.DEFAULT_RENAME_PREFIX);
        }
    
        protected static Transform rename(final CppSourceFileElement beforeElement, String renamePrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top