Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 873 for 34$ (0.14 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MethodInvocationSerializerTest.groovy

            def method2 = String.class.getMethod("substring", Integer.TYPE, Integer.TYPE)
            def invocation1 = new MethodInvocation(method1, [1, 2] as Object[])
            def invocation2 = new MethodInvocation(method2, [3, 4] as Object[])
    
            given:
            def invocation1Serialized = serialize(invocation1)
            def invocation2Serialized = serialize(invocation2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         * </p>
         *
         * @return <code>true</code> if file timestamps should be preserved for archive entries
         * @since 3.4
         */
        @Input
        public boolean isPreserveFileTimestamps() {
            return archivePreserveFileTimestamps.get();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000280  b3 4d f3 5d 6a 51 96 a9  81 84 72 95 47 e8 0a f5  |.M.]jQ....r.G...|
    00000290  8d d6 2a 64 c2 34 1b d8  f0 f9 62 0c be 17 12 9b  |..*d.4....b.....|
    000002a0  40 a2 c3 8a eb 30 20 04  e4 69 a3 27 90 a6 1a 4f  |@....0 ..i.'...O|
    000002b0  3f 95 65 e6 9e c7 ad 03  e1 d2 34 d2 84 d5 f6 8c  |?.e.......4.....|
    000002c0  1e 8a aa e4 75 c0 7f 1d  79 4e 70 10 4e 18 9c eb  |....u...yNp.N...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Describable.java

     * even if it's only a string concatenation, can take a significant amount of time during
     * configuration for something that would only be used, typically, in error messages.
     *
     * @since 3.4
     */
    public interface Describable {
        /**
         * Returns the display name of this object. It is strongly encouraged to compute it
         * lazily, and cache the value if it is expensive.
         * @return the display name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ReproducibleFileVisitor.java

     * limitations under the License.
     */
    
    package org.gradle.api.file;
    
    /**
     * Visitor which can request a reproducible file order.
     *
     * @since 3.4
     */
    public interface ReproducibleFileVisitor extends FileVisitor {
        /**
         * Whether the {@link FileVisitor} should receive the files in a reproducible order independent of the underlying file system.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/bench_test.go

    //go:noinline
    func sign(p1, p2, p3 Point) bool {
    	return (p1.X-p3.X)*(p2.Y-p3.Y)-(p2.X-p3.X)*(p1.Y-p3.Y) < 0
    }
    
    func BenchmarkInvertLessThanNoov(b *testing.B) {
    	p1 := Point{1, 2}
    	p2 := Point{2, 3}
    	p3 := Point{3, 4}
    	for i := 0; i < b.N; i++ {
    		sign(p1, p2, p3)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 02:36:06 UTC 2023
    - 835 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_restore_merging.mlir

      %3 = "tf.Const"() {value = dense<"bar"> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
      %4 = "tf.Const"() {value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
      %5 = "tf.RestoreV2"(%arg0, %3, %4) : (tensor<!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>) -> tensor<*xi32>
    
      // CHECK:      %[[NAMES:.*]] = "tf.Const"() <{value = dense<["foo", "bar"]> : tensor<2x!tf_type.string>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 18:22:47 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. test/fixedbugs/bug392.dir/one.go

    func (t *T) MM() int { return t.M() }
    
    
    // One more like issue 2678
    type S struct { x, y int }
    type U []S
    
    func F4(S int) U { return U{{S,S}} }
    
    func F5() []*S {
    	return []*S{ {1,2}, { 3, 4} }
    }
    
    func F6(S int) *U {
    	return &U{{S,S}}
    }
    
    // Bug in the fix.
    
    type PB struct { x int }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 851 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasConfigurableAttributes.java

    import org.gradle.api.Action;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer} that is configurable.
     *
     * @param <SELF> type extending this interface
     *
     * @since 3.4
     */
    public interface HasConfigurableAttributes<SELF> extends HasAttributes {
    
        /**
         * Configure the attribute container that provides the attributes
         * associated with this domain object.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. test/rename1.go

    	nil        = 23
    	panic      = 24
    	print      = 25
    	println    = 26
    	real       = 27
    	recover    = 28
    	rune       = 29
    	string     = 30
    	true       = 31
    	uint       = 32
    	uint8      = 33
    	uint16     = 34
    	uint32     = 35
    	uint64     = 36
    	uintptr    = 37
    	iota       = "38"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:07:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top