Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for new_args (0.18 sec)

  1. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            }
            throw new ParameterHasNoDistinctValueException(params.get(i));
          }
          newArgs.set(i, newArg);
          tester.addEqualityGroup(createInstance(factory, newArgs));
          argGroups.add(ImmutableList.of(newArgs));
        }
        tester.testEquals();
      }
    
      /**
       * Returns dummy factory arguments that are equal to {@code args} but may be different instances,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            }
            throw new ParameterHasNoDistinctValueException(params.get(i));
          }
          newArgs.set(i, newArg);
          tester.addEqualityGroup(createInstance(factory, newArgs));
          argGroups.add(ImmutableList.of(newArgs));
        }
        tester.testEquals();
      }
    
      /**
       * Returns dummy factory arguments that are equal to {@code args} but may be different instances,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    if($extraimports ne "") {
        $stdimports .= "\n$extraimports";
    }
    
    # TODO: this assumes tags are just simply comma separated. For now this is all the uses.
    $newtags = $tags =~ s/,/ && /r;
    
    print <<EOF;
    // $cmdline
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build $newtags
    
    package syscall
    
    $stdimports
    
    $text
    EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      mlir::FunctionType func_type = main_func.getFunctionType();
    
      int num_args = func_type.getNumInputs();
      xla_input_shapes->reserve(num_args);
    
      std::vector<xla::Shape> individual_arg_shapes;
      individual_arg_shapes.reserve(num_args);
      for (int i = 0; i < num_args; ++i) {
        individual_arg_shapes.emplace_back();
        xla::Shape& xla_shape = individual_arg_shapes.back();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return fmt.Errorf("patch %v/%v/%v: %v", us.GroupVersionKind(), us.GetNamespace(), us.GetName(), err)
    	}
    	return nil
    }
    
    func (d *DeploymentController) HandleTagChange(newTags sets.String) {
    	for _, gw := range d.gateways.List(metav1.NamespaceAll, klabels.Everything()) {
    		d.queue.AddObject(gw)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top