Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rootValue (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

            expectedPropPerProject = [a: 'rootValue', b: 'rootValue', 'a:a1': 'rootValue'] + expectedPropPerProject
            def root = multiProjectBuild('extra-properties', ['a', 'b']) {
                createDirs("a", "a/a1")
                settingsFile << "include ':a:a1'"
    
                buildFile << """
                    ext.testProp = 'rootValue'
    
                    task checkTestProp {
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectPropertySettingBuildLoaderTest.groovy

            given:
            GUtil.saveProperties(new Properties([prop: 'rootValue']), rootPropertiesFile())
            GUtil.saveProperties(new Properties([prop: 'childValue']), childPropertiesFile())
    
            when:
            loader.load(settings, gradle)
    
            then:
            1 * gradleProperties.mergeProperties([prop: 'rootValue']) >> [prop: 'rootValue']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

        }
    
        def "build command list independent from project hierarchy"() {
            setup:
            project.eclipse.project.buildCommands = [new BuildCommand('rootBuildCommand', ['rootKey': 'rootValue'])]
            child1.eclipse.project.buildCommands = [new BuildCommand('child1BuildCommand', ['child1Key': 'child1Value'])]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      // So we have to directly import these instructions.
      TF_ASSIGN_OR_RETURN(
          mlir::Value root_value,
          xla::HloFunctionImporter::ImportInstructions(
              *hlo_module->entry_computation(), arguments, symbol_table, &builder));
    
      mhlo::TupleOp root_tuple =
          mlir::dyn_cast_or_null<mhlo::TupleOp>(root_value.getDefiningOp());
      if (!root_tuple) {
        return tsl::errors::InvalidArgument(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_server_journal.go

    		} else {
    			nlq.UntilTime = &untilTime
    		}
    	}
    
    	var boot int
    	bootValue := query.Get("boot")
    	if len(bootValue) > 0 {
    		boot, err = strconv.Atoi(bootValue)
    		if err != nil {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("boot"), bootValue, err.Error()))
    		} else {
    			nlq.Boot = &boot
    		}
    	}
    
    	var tailLines int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top