Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for parms (0.06 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/xml/pull/XmlSerializer.class package org.codehaus.plexus.util.xml.pull;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
      return false;
    }
    
    class ConvertGatherOp : public OpConversionPattern<mhlo::GatherOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      // Helper params for representing the transpose params for the "canonicalized"
      // output to the real output.
      struct TransposeParams {
        std::vector<int64_t> permutation;
        // The following are the "canonicalized" output shape with offset dims.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    		`Europe/Luxembourg`,
    		`Europe/Madrid`,
    		`Europe/Malta`,
    		`Europe/Mariehamn`,
    		`Europe/Minsk`,
    		`Europe/Monaco`,
    		`Europe/Moscow`,
    		`Europe/Nicosia`,
    		`Europe/Oslo`,
    		`Europe/Paris`,
    		`Europe/Podgorica`,
    		`Europe/Prague`,
    		`Europe/Riga`,
    		`Europe/Rome`,
    		`Europe/Samara`,
    		`Europe/San_Marino`,
    		`Europe/Sarajevo`,
    		`Europe/Saratov`,
    		`Europe/Simferopol`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    const (
    	maxEConfigJSONSize        = 262272
    	kubernetesVersionEndpoint = "https://kubernetes.default.svc/version"
    	anonymizeParam            = "anonymize"
    	anonymizeStrict           = "strict"
    )
    
    // Only valid query params for mgmt admin APIs.
    const (
    	mgmtBucket      = "bucket"
    	mgmtPrefix      = "prefix"
    	mgmtClientToken = "clientToken"
    	mgmtForceStart  = "forceStart"
    	mgmtForceStop   = "forceStop"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/net/http/server.go

    //
    // In general, a pattern looks like
    //
    //	[METHOD ][HOST]/[PATH]
    //
    // All three parts are optional; "/" is a valid pattern.
    // If METHOD is present, it must be followed by at least one space or tab.
    //
    // Literal (that is, non-wildcard) parts of a pattern match
    // the corresponding parts of a request case-sensitively.
    //
    // A pattern with no method matches every method. A pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "rollingUpdate": {
              "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
              "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
            },
            "type": {
              "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // Returns true iff `val` (a complex constant with float real and imaginary
        // parts) is zero.
        auto complexIsZero = [](const std::complex<APFloat> val) {
          // Note that when `val` is of complex type, it is zero iff both
          // its real and imaginary parts are zero.
          if (val.real().isZero() && val.imag().isZero())
            return true;
          else
            return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    }
    
    func TestPrintIngressClass(t *testing.T) {
    	testCases := []struct {
    		name         string
    		ingressClass *networking.IngressClass
    		expected     []metav1.TableRow
    	}{{
    		name: "example with params",
    		ingressClass: &networking.IngressClass{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:              "test1",
    				CreationTimestamp: metav1.Time{Time: time.Now().Add(time.Duration(-10 * 365 * 24 * time.Hour))},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    complex64   the set of all complex numbers with float32 real and imaginary parts
    complex128  the set of all complex numbers with float64 real and imaginary parts
    
    byte        alias for uint8
    rune        alias for int32
    </pre>
    
    <p>
    The value of an <i>n</i>-bit integer is <i>n</i> bits wide and represented using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return
    }
    
    // CHECK-LABEL: testGatherToV2
    // Ensures that axis param and batch_dims attr use their default values of 0.
    func.func @testGatherToV2(%params: tensor<4x3xf32>, %indices: tensor<1x2xi32>) -> tensor<2x3xf32> {
      // CHECK: %[[AXIS:.*]] = "tf.Const"() <{value = dense<0> : tensor<i32>}> : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
Back to top