Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,141 for valid (1.33 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractorTest.groovy

    - Method ${ruleDescription} is not a valid rule method: A method annotated with @BinaryTasks must have void return type.
    - Method ${ruleDescription} is not a valid rule method: The first parameter of a method annotated with @BinaryTasks must be of type org.gradle.model.ModelMap.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{"valid, but IPv6 CIDR too small. At least 10 addresses needed", "10.0.0.16/12,2001:db8::/125", 10, false},
    		{"valid, but only IPv4 family addresses specified. IPv6 CIDR is necessary.", "10.0.0.16/12,192.168.0.0/16", 10, false},
    		{"valid, but only IPv6 family addresses specified. IPv4 CIDR is necessary.", "2001:db8::/98,2005:db8::/98", 10, false},
    		{"valid IPv4 and IPv6 CIDR", "10.0.0.16/12,2001:db8::/98", 10, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/endpoint.go

    		return host, port, nil
    	}
    
    	return "", "", errors.Errorf("hostport %s: host '%s' must be a valid IP address or a valid RFC-1123 DNS subdomain", hostport, host)
    }
    
    // ParsePort parses a string representing a TCP port.
    // If the string is not a valid representation of a TCP port, ParsePort returns an error.
    func ParsePort(port string) (int, error) {
    	portInt, err := netutils.ParsePort(port, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags_test.go

    		},
    		{
    			name:           "valid output format and --template argument succeeds",
    			outputFormat:   "jsonpath",
    			templateArg:    "{ .metadata.name }",
    			expectedOutput: "foo",
    		},
    		{
    			name:           "valid jsonpath-as-json output format also containing argument succeeds",
    			outputFormat:   "jsonpath-as-json={ .metadata.name }",
    			expectedOutput: "foo",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/patches/patches_test.go

    		expectedPatchType  types.PatchType
    		expectedWarning    bool
    		expectedError      bool
    	}{
    		{
    			name:               "valid: known target and patch type",
    			fileName:           "etcd+merge.json",
    			expectedTargetName: "etcd",
    			expectedPatchType:  types.MergePatchType,
    		},
    		{
    			name:               "valid: known target and default patch type",
    			fileName:           "etcd0.yaml",
    			expectedTargetName: "etcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue67547.go

    type S1 struct {
    	x int "S1.x"
    }
    
    type S2 struct {
    	x int "S2.x"
    }
    
    func _[P1 S1, P2 S2]() {
    	type A = P1
    	var p A
    	_ = P2(p) // conversion must be valid
    }
    
    func _[P1 S1, P2 S2]() {
    	var p P1
    	type A = P2
    	_ = A(p) // conversion must be valid
    }
    
    func _[P int | string]() {
    	var p P
    	type A = int
    	// preserve target type name A in error messages when using Alias types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/fetch_feed_names.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s | tf-mlir-translate -graphdef-to-mlir
    
    // Test graphdef export is producing valid GraphDef. The test imports the
    // generated GraphDef to make sure the export is valid.
    
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 890 : i32}}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_gpu_cc_70.mlir

      // CHECK: "tf.Conv2D"(%[[INPUT_TRANSPOSE:[0-9]*]], %arg1)
      // CHECK-SAME: data_format = "NCHW"
      %0 = "tf.Conv2D"(%input, %filter)
           {
             data_format = "NHWC",
             padding = "VALID",
             strides = [1, 1, 1, 1]
           } : (tensor<1x28x28x64xf32>, tensor<3x3x64x64xf32>)
            -> tensor<1x26x26x64xf32>
    
      func.return %0 : tensor<1x26x26x64xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 21 08:41:18 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/go/types/validtype.go

    		//           in that issue `type A[P any] [1]P` is a valid type on its own
    		//           and the (uninstantiated) A is recorded in check.valids. As a
    		//           consequence, when checking the remaining declarations, which
    		//           are not valid, the validity check ends prematurely because A
    		//           is considered valid, even though its validity depends on the
    		//           type argument provided to it.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top