Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 402 for idea (0.04 sec)

  1. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    }
    
    func TestMergeLocalsIntegration(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This test does a build of a specific canned package to
    	// check whether merging of stack slots is taking place.
    	// The idea is to do the compile with a trace option turned
    	// on and then pick up on the frame offsets of specific
    	// variables.
    	//
    	// Stack slot merging is a greedy algorithm, and there can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.Sets;
    import groovy.util.Node;
    
    import java.util.Collection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.plugins.ide.idea.GenerateIdeaModule.getOutputFile()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateIdeaModule.java:0)
    Method <org.gradle.plugins.ide.idea.GenerateIdeaModule.getXmlTransformer()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GenerateIdeaModule.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. hack/verify-shellcheck.sh

    # disabled lints
    disabled=(
      # this lint disallows non-constant source, which we use extensively without
      # any known bugs
      1090
      # this lint warns when shellcheck cannot find a sourced file
      # this wouldn't be a bad idea to warn on, but it fails on lots of path
      # dependent sourcing, so just disable enforcing it
      1091
      # this lint prefers command -v to which, they are not the same
      2230
    )
    # comma separate for passing to shellcheck
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

      bool unconditionally_use_set_output_shapes;
      bool enable_soft_placement;
      bool set_original_tf_func_name = false;
    };
    
    // TODO(antiagainst): Directly manipulating files in library functions is not
    // a good idea. We should pass in a string/stream here.
    
    // Converts a TensorFlow GraphDef contained in `input` param into a MLIR module.
    // Creates MLIR entities into the given MLIR `context`.
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

        final File studioInstallDir
        final File studioSandboxDir
        /**
         * The special JVM arguments for Android Studio.
         */
        final List<String> studioJvmArgs
        /**
         * The special idea.properties for Android Studio,
         * this can be used to set registry values as well, e.g. `gradle.tooling.models.parallel.fetch=true`.
         */
        final List<String> studioIdeaProperties
        final boolean expectFailure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.GenerateIdeaProject.create()> has arguments/return type org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObject that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateIdeaProject.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                        add("${it.group}:cglib:3.2.7")
                    }
                    removeAll { it.name == "cglib-nodep" }
                }
            }
        }
    }
    
    // https://youtrack.jetbrains.com/issue/IDEA-261387
    abstract class UnifyTrove4jVersionRule : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
            context.details.allVariants {
                withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

    import org.gradle.tooling.BuildActionFailureException
    import org.gradle.tooling.BuildException
    import org.gradle.tooling.UnknownModelException
    import org.gradle.tooling.model.idea.IdeaProject
    
    class BuildActionCrossVersionSpec extends ToolingApiSpecification {
        def "client receives the result of running a build action"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/stackalloc.go

    			if f.pass.debug > stackDebug {
    				fmt.Printf("stackalloc OpArg %s to %s\n", v, loc)
    			}
    			f.setHome(v, loc)
    			continue
    		}
    		// You might think this below would be the right idea, but you would be wrong.
    		// It almost works; as of 105a6e9518 - 2021-04-23,
    		// GOSSAHASH=11011011001011111 == cmd/compile/internal/noder.(*noder).embedded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top