Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 196 for renameat (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *          the new delegate. This ensures the invariant above.
     *     <li> Adds {@link InstrumentableClosure} to the set of interfaces.
     *     <li> Renames the {@code doCall} methods to {@code doCall$original} and adds new {@code doCall methods} that surrounds the original call with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesTest.java

          super(file.getPath());
          this.canRename = canRename;
          this.canDelete = canDelete;
        }
    
        @Override
        public boolean renameTo(File to) {
          return canRename && super.renameTo(to);
        }
    
        @Override
        public boolean delete() {
          return canDelete && super.delete();
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

    }
    
    // -----
    
    // Tests when a function called @main already exists, it is renamed to
    // `main_{i}` to avoid conflict.
    module attributes {tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

    25}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs24 \cf0 Old Ant task (renamed)}WrapNOAllowLabelDrop{296, 349.5}elementLINETOpoint{296, 258.5}Points{296, 349.5}{296, 258.5}StylefillDrawsNOshad.0g0.0r0.0space9eaea0911d89d6{{245.875, 328}, {100.25, 43}}ClassShapedGraphicFo-RegularSize12ID18Sty.0g0.0r0.0space9eaea0911d89d6{\rt...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            file('foo/a/b') << "foo"
            execute("taskWithInputs")
    
            then:
            executedAndNotSkipped(":taskWithInputs")
    
            when:
            cleanWorkspace()
            file('foo/a').renameTo(file('foo/c'))
            execute("taskWithInputs")
    
            then:
            executedUnlessNameOnly(":taskWithInputs", pathSensitivity)
    
            when:
            cleanWorkspace()
            file('foo').deleteDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

         *
         * @param value the new explicitly assigned value
         * @return the very <code>value</code> given
         */
        //TODO-RC rename this or the overload as they have significantly different semantics
        public abstract S explicitValue(S value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/infer.go

    		tparams2[i] = NewTypeParam(tname, nil)
    		tparams2[i].index = tparam.index // == i
    	}
    
    	renameMap := makeRenameMap(tparams, tparams2)
    	for i, tparam := range tparams {
    		tparams2[i].bound = check.subst(pos, tparam.bound, renameMap, nil, check.context())
    	}
    
    	return tparams2, check.subst(pos, typ, renameMap, nil, check.context())
    }
    
    // typeParamsString produces a string containing all the type parameter names
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

            executedAndNotSkipped compileTask
    
            and:
            outputs.recompiledFile sourceFile
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles source file when an included header file is renamed"() {
            given:
            outputs.snapshot { run "mainExecutable" }
    
            and:
            final newFile = file("src/main/headers/changed.h")
            newFile << sharedHeaderFile.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            download.download(distributionUrl, tempDownloadFile);
            if(localTargetFile.exists()) {
                localTargetFile.delete();
            }
            tempDownloadFile.renameTo(localTargetFile);
        }
    
        static String calculateSha256Sum(File file) throws Exception {
            MessageDigest md = MessageDigest.getInstance("SHA-256");
            InputStream fis = new FileInputStream(file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        const PyFunctionLibrary* quantization_py_function_lib) {
      if (toco_flags.has_dump_graphviz_dir()) {
        TF_RETURN_IF_ERROR(DumpOpGraphToFile(
            module.get(),
            // rename once we enable the new converter feature flag.
            absl::StrCat(toco_flags.dump_graphviz_dir(), "/toco_AT_IMPORT.dot")));
      }
    
      mlir::TFL::PassConfig pass_config_copy = pass_config;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top