Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 259 for hand (0.06 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	)
    	if ident != "" && len(objs) == 0 {
    		// Check ExampleFoo and ExampleBadFoo.
    		pass.Reportf(fn.Pos(), "%s refers to unknown identifier: %s", fnName, ident)
    		// Abort since obj is absent and no subsequent checks can be performed.
    		return
    	}
    	if len(elems) < 2 {
    		// Nothing more to do.
    		return
    	}
    
    	if ident == "" {
    		// Check Example_suffix and Example_BadSuffix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    syntax for the `build.xml` file, the handling of the targets, special constructs like macrodefs, and more. In other words, this layer includes everything except the Ant tasks and types. Gradle understands this language and lets you import your Ant `build.xml` directly into a Gradle project. You can then use the targets of your Ant build as if they were Gradle tasks.
    
    2. *Layer 2: The Ant tasks and types*, like `javac`, `copy` or `jar`. For this layer, Gradle provides integration using Groovy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/go/types/typeset.go

    // implied by the methods and the type set described by the terms and the
    // comparable bit. To test whether a type is included in a type set
    // ("implements" relation), the type must implement all methods _and_ be
    // an element of the type set described by the terms and the comparable bit.
    // If the term list describes the set of all types and comparable is true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedBytes.java

           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
           * The compiler can treat static final fields as compile-time constants and can constant-fold
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

        return {};
      }
      Operation* result_op = results[0].getDefiningOp();
      auto module = result_op->getParentOfType<ModuleOp>();
    
      // Create a private function and copy all ops between arguments and results.
      auto current_func = result_op->getParentOfType<func::FuncOp>();
      auto guard = OpBuilder::InsertionGuard(builder);
      builder.setInsertionPointAfter(current_func);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedBytes.java

           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
           * The compiler can treat static final fields as compile-time constants and can constant-fold
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

            width:  width,
            src:    g.src,
    	sumpos: g.sumpos,
    	sumneg: g.sumneg,
            self:   g.self,
          };
          displayList.push(box);
          if (direction > 0) {
    	// Leave gap on left hand side to indicate self contribution.
    	x += xscale*Math.abs(g.self);
          }
        }
        y += direction * ROW;
    
        // Find child or parent stacks.
        const next = [];
        for (const place of g.places) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <p>
    these types are identical:
    </p>
    
    <pre>
    A0, A1, and []string
    A2 and struct{ a, b int }
    A3 and int
    A4, func(int, float64) *[]string, and A5
    
    B0 and C0
    []int and []int
    struct{ a, b *T5 } and struct{ a, b *T5 }
    func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
    </pre>
    
    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
Back to top