Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 810 for locations (0.23 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
                solutions == [ 'Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                }
            }
        }
    
        /**
         * Clamp the value to an int, or return {@link Diagnostic#NOPOS} if the value is too large.
         * <p>
         * This is used to ensure that we don't report invalid locations.
         *
         * @param value the value to clamp
         * @return either the clamped value, or {@link Diagnostic#NOPOS}
         */
        private static int clampLocation(long value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

            return new DefaultFileSystemAccess(
                fileHasher(),
                new StringInterner(),
                fileSystem()::stat,
                virtualFileSystem,
                locations -> {},
                new DirectorySnapshotterStatistics.Collector()
            );
        }
    
        public static FileCollectionFactory fileCollectionFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    Ensure that the producing and consuming tasks are configured with the same location and attach task dependencies between the tasks.
    This can be cumbersome and brittle if any of these values are configurable by a user or configured by multiple plugins, as task properties need to be configured in the correct order and locations, and task dependencies kept in sync as values change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    If an option is configured in multiple locations, the _first one_ found in any of these locations wins:
    
    [cols="~,~,~,~"]
    |===
    |Priority |Method |Location |Details
    
    |1
    |Command line interface
    |.
    |In the command line using `-D`.
    
    |2
    |`gradle.properties` file
    |`GRADLE_USER_HOME`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // names except output tensors.
    Location OpLoc(const OperatorT& op,
                   const std::vector<std::unique_ptr<tflite::TensorT>>& tensors,
                   Builder builder, Location base) {
      if (op.outputs.empty()) return base;
    
      llvm::SmallVector<Location, 4> locations;
      locations.reserve(op.outputs.size());
      for (auto tensor_index : op.outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		p, src, err = fetch(source, duration, timeout, ui, tr)
    		if err != nil {
    			return
    		}
    	}
    
    	if err = p.CheckValid(); err != nil {
    		return
    	}
    
    	// Update the binary locations from command line and paths.
    	locateBinaries(p, s, obj, ui)
    
    	// Collect the source URL for all mappings.
    	if src != "" {
    		msrc = collectMappingSources(p, src)
    		remote = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    |===
    |Property Type |Note
    
    |`Property<T>`
    |Where `T` is typically `Double`, `Integer`, `Long`, `String`, or `Bool`
    
    |`RegularFileProperty`
    |Configurable regular file location, whose value is mutable
    
    |`DirectoryProperty`
    |Configurable directory location, whose value is mutable
    
    |`ListProperty<T>`
    |List of elements of type `T`
    
    |`SetProperty<T>`
    |Set of elements of type `T`
    
    |`MapProperty<K, V>`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static List<Location> toLocations(List<InternalLocation> locations) {
            List<Location> result = new ArrayList<>(locations.size());
            for (InternalLocation location : locations) {
                if (location instanceof InternalLineInFileLocation) {
                    InternalLineInFileLocation l = (InternalLineInFileLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # IBM's JDK on AIX uses strange locations for the executables
            JAVACMD=\$JAVA_HOME/jre/sh/java
        else
            JAVACMD=\$JAVA_HOME/bin/java
        fi
        if [ ! -x "\$JAVACMD" ] ; then
            die "ERROR: JAVA_HOME is set to an invalid directory: \$JAVA_HOME
    
    Please set the JAVA_HOME variable in your environment to match the
    location of your Java installation."
        fi
    else
        JAVACMD=java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top