Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,528 for unknownH (0.26 sec)

  1. src/internal/types/testdata/fixedbugs/issue58742.go

    	return 0 // ERROR "not enough return values\n\thave (number)\n\twant (int, unknown type, string)"
    }
    
    func _() (int, UndefinedType /* ERROR "undefined: UndefinedType" */ ) {
    	return 0, 1, 2 // ERROR "too many return values\n\thave (number, number, number)\n\twant (int, unknown type)"
    }
    
    // test case from issue
    func _() UndefinedType /* ERROR "undefined: UndefinedType" */ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:21:51 UTC 2023
    - 708 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

            type: object
            default:
              name: Bar
              unknown: unknown
      preserve-fullObject:
        type: object
        x-kubernetes-embedded-resource: true
        x-kubernetes-preserve-unknown-fields: true
        default:
          apiVersion: foos/v1
          kind: Foo
          metadata:
            name: Bar
            unknown: unknown
      preserve-spanning:
        type: object
        properties:
          embedded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{
    				{
    					Cells: []interface{}{"foo2", "Unknown", "<none>", "<unknown>", "", "<none>", "1.1.1.1", "<unknown>", "<unknown>", "<unknown>"},
    				},
    			},
    		},
    	}
    
    	for i, test := range table {
    		rows, err := printNode(&test.node, printers.GenerateOptions{Wide: true})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      }
      func.return
    }
    
    // -----
    // Test an unknown op that has a resource result is marked unknown
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @unknown_resource_op
    func.func @unknown_resource_op(%arg0: tensor<32xf32>) -> () {
        // expected-remark@below {{Result #0, ID 0 : Unknown}}
        %0 = "tf.UnknownVarHandleOp"() : () -> !tf_res
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

            detector.detectProcessors(cp).values().asList() == [
                new AnnotationProcessorDeclaration("InJar", IncrementalAnnotationProcessorType.UNKNOWN),
                new AnnotationProcessorDeclaration("InDir", IncrementalAnnotationProcessorType.UNKNOWN)
            ]
        }
    
        def "uses UNKNOWN as the default for processors with broken Gradle metadata"() {
            given:
            def jar = tmpDir.file("classes.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. tensorflow/c/tf_shape.h

    // we may expose the ABI of TF_Shape for performance reasons.
    typedef struct TF_Shape TF_Shape;
    
    // Return a new, unknown rank shape object. The caller is responsible for
    // calling TF_DeleteShape to deallocate and destroy the returned shape.
    TF_CAPI_EXPORT extern TF_Shape* TF_NewShape();
    
    // Returns the rank of `shape`. If `shape` has unknown rank, returns -1.
    TF_CAPI_EXPORT extern int TF_ShapeDims(const TF_Shape* shape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 00:25:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    			expectedPolicy: "single-numa-node",
    		},
    		{
    			description:   "Policy is set to unknown",
    			policyName:    "unknown",
    			expectedError: fmt.Errorf("unknown policy: \"unknown\""),
    		},
    		{
    			description:    "Unknown policy name best-effort policy",
    			policyName:     "best-effort",
    			expectedPolicy: "best-effort",
    			expectedError:  fmt.Errorf("unknown Topology Manager Policy option:"),
    			policyOptions: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/go/constant/value_test.go

    var stringTests = []struct {
    	input, short, exact string
    }{
    	// Unknown
    	{"", "unknown", "unknown"},
    	{"0x", "unknown", "unknown"},
    	{"'", "unknown", "unknown"},
    	{"1f0", "unknown", "unknown"},
    	{"unknown", "unknown", "unknown"},
    
    	// Bool
    	{"true", "true", "true"},
    	{"false", "false", "false"},
    
    	// String
    	{`""`, `""`, `""`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue26416.go

    	*t2
    }
    
    var (
    	_ = t2{t1f1: 600} // ERROR "cannot use promoted field t1.t1f1 in struct literal of type t2|unknown field"
    	_ = t3{t1f2: 800} // ERROR "cannot use promoted field t2.t1.t1f2 in struct literal of type t3|unknown field"
    	_ = t3{t2f1: 900} // ERROR "cannot use promoted field t2.t2f1 in struct literal of type t3|unknown field"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 639 bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

                apply plugin: ShowPlugin
            """
    
            when:
            result = executer
                .withEnvironmentVars([JDK1: new File("/unknown/env").absolutePath, JDK2: firstJavaHome])
                .withArgument("-Porg.gradle.java.installations.paths=${new File("/unknown/path").absolutePath}," + secondJavaHome)
                .withArgument("-Porg.gradle.java.installations.fromEnv=JDK1,JDK2")
                .withArgument("--info")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top