Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for t2Value (0.1 sec)

  1. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            // create the recessive DOM
            Xpp3Dom t2 = new Xpp3Dom("top");
            t2.setAttribute("attr2", "value2");
            t2.setValue("t2Value");
            t2.setInputLocation("t2top");
    
            // merge and check results.
            Xpp3Dom result = Xpp3Dom.mergeXpp3Dom(t1, t2);
    
            assertEquals(2, result.getAttributeNames().length);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

            } else if (value.hasFixedValue()) {
                // transform preserving side effects
                visitor.execute(ValueSupplier.ExecutionTimeValue.value(value.toValue().transform(ImmutableList::of)));
            } else {
                visitor.execute(ValueSupplier.ExecutionTimeValue.changingValue(value.getChangingValue().map(transformer(ImmutableList::of))));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == expectedUnpackedValue
            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == toImmutable(expectedUnpackedValue)
            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    	p = datap.pctab[off:]
    	pc = f.entry()
    	val = -1
    	for {
    		var ok bool
    		p, ok = step(p, &pc, &val, pc == f.entry())
    		if !ok {
    			break
    		}
    		print("\tvalue=", val, " until pc=", hex(pc), "\n")
    	}
    
    	throw("invalid runtime symbol table")
    	return -1, 0
    }
    
    func funcname(f funcInfo) string {
    	if !f.valid() {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                 "folder produced value of incorrect type");
          if ((attr = ComputeOutputComponent(ValuePort(value)))) {
            DCOMMENT("\t\tValue Result mapped to " << attr);
            RecordValue(ValuePort(std::get<0>(result)), attr);
          } else {
            DCOMMENT("\t\tValue result unmapped, consider value type:" << value);
            RefineResultType(op, std::get<0>(result), value.getType());
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top