Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for getVoid (0.25 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                public abstract class MyTransformAction implements TransformAction {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                @DisableCachingByDefault(because = "test task")
                public class MyTask extends DefaultTask {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
                        return count;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_riscv64.go

    func Getegid() (egid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getegid_trampoline), 0, 0, 0)
    	egid = int(r0)
    	return
    }
    
    func libc_getegid_trampoline()
    
    //go:cgo_import_dynamic libc_getegid getegid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Geteuid() (uid int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_amd64.go

    func Getegid() (egid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getegid_trampoline), 0, 0, 0)
    	egid = int(r0)
    	return
    }
    
    func libc_getegid_trampoline()
    
    //go:cgo_import_dynamic libc_getegid getegid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Geteuid() (uid int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm64.go

    func Getegid() (egid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getegid_trampoline), 0, 0, 0)
    	egid = int(r0)
    	return
    }
    
    func libc_getegid_trampoline()
    
    //go:cgo_import_dynamic libc_getegid getegid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Geteuid() (uid int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.go

    func Getegid() (egid int) {
    	r0, _, _ := rawSyscall(abi.FuncPCABI0(libc_getegid_trampoline), 0, 0, 0)
    	egid = int(r0)
    	return
    }
    
    func libc_getegid_trampoline()
    
    //go:cgo_import_dynamic libc_getegid getegid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Geteuid() (uid int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      auto num_loop_carried = while_op.getCond().getNumArguments();
      auto not_carried_operands =
          while_op.getOperands().drop_front(num_loop_carried);
      extern_values.insert(not_carried_operands.begin(),
                           not_carried_operands.end());
      auto old_extern_values_size = extern_values.size();
    
      llvm::SmallVector<Region*, 2> regions{&while_op.getCond(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                        public String getGood() {
                            return "good";
                        }
    
                        public String getNotAnnotated() {
                            return null;
                        }
                    }
    
                    public static class NamedBean implements Named {
                        @Input
                        public String getGood() {
                            return "good";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      Block &cond = while_op.getCond().front();
      Block &body = while_op.getBody().front();
    
      auto n = while_op.getNumOperands();
      if (!AllOperationSafe(cond) || !AllOperationSafe(body)) return false;
    
      // Find all Consumed indices.
      // i is consumed element if result(i) is used outside whileOp or
      // argument(i) is used in whileOp.getCond().
      for (auto i = 0; i < n; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

          while_op->erase();
        } else if (auto while_op = dyn_cast<TF::WhileRegionOp>(user_op)) {
          auto new_while_op = GetUpdatedWhileOp(
              while_op, while_op.getCond().getArgumentTypes(), args_to_erase);
          new_while_op.getCond().takeBody(while_op.getCond());
          new_while_op.getBody().takeBody(while_op.getBody());
          llvm::BitVector erase_indices;
          UpdateTerminatorArguments(new_while_op.getBody(), args_to_erase,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top