Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,528 for unknownH (0.13 sec)

  1. src/crypto/x509/name_constraints_test.go

    		case "msSGC":
    			ekus = append(ekus, ExtKeyUsageMicrosoftServerGatedCrypto)
    		case "any":
    			ekus = append(ekus, ExtKeyUsageAny)
    		case "other":
    			unknowns = append(unknowns, asn1.ObjectIdentifier{2, 4, 1, 2, 3})
    		default:
    			return nil, nil, fmt.Errorf("unknown EKU %q", s)
    		}
    	}
    
    	return
    }
    
    func TestConstraintCases(t *testing.T) {
    	privateKeys := sync.Pool{
    		New: func() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            plugin.displayName.displayName == "plugin 'someRuleSource'"
            plugin.asClass() == TestRuleSource
        }
    
        def "locate returns null for unknown id"() {
            expect:
            pluginRegistry.lookup(DefaultPluginId.of("unknownId")) == null
        }
    
        def "can locate plugin implementation in org.gradle namespace using unqualified id"() {
            def url = writePluginProperties(TestPlugin1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    			expectedSupports: true,
    		},
    		"Field validation unsupported for unknown GVK": {
    			crds: []schema.GroupKind{},
    			gvk: schema.GroupVersionKind{
    				Group:   "bad",
    				Version: "v1",
    				Kind:    "Uknown",
    			},
    			queryParam:       QueryParamFieldValidation,
    			expectedSupports: false,
    		},
    		"Unknown query param unsupported (for all GVK's)": {
    			crds: []schema.GroupKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. pkg/version/cobra_test.go

    			expectedRegexp: regexp.MustCompile("version.BuildInfo{Version:\"unknown\", GitRevision:\"unknown\", " +
    				"GolangVersion:\"go1.([0-9+?(\\.)?]+).*\", " +
    				"BuildStatus:\"unknown\", GitTag:\"unknown\"}"),
    		},
    		{ // case 1 client-side only, short output
    			args:           strings.Split("version -s --remote=false", " "),
    			expectedOutput: "unknown\n",
    		},
    		{ // case 2 client-side only, yaml output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/mlir-module-serialized-str-attr.mlir

        func.return %0 : tensor<?xi32> loc(unknown)
      } loc(unknown)
    } loc(unknown)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 24 06:42:46 UTC 2023
    - 672 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_location_roundtrip.mlir

        }) : () -> (tensor<f32>, !tf_executor.control) loc("identity@some_function")
        "tf_executor.fetch"(%1#0) : (tensor<f32>) -> () loc(unknown)
      }) : () -> tensor<f32> loc(unknown)
      "func.return"(%0) : (tensor<f32>) -> () loc(unknown)
    } loc(unknown)
    
    // This test cases exercises our handling of the "tf_executor.island wraps"
    // syntax. In particular, that syntax only prints out a single location, so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 05 14:24:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers_test.go

    	assert.Equal(t, "unknown", fmt.Sprintf("%v", acceptWithoutReq))
    }
    
    func TestLazyVerb(t *testing.T) {
    	assert.Equal(t, "unknown", fmt.Sprintf("%v", &lazyVerb{}))
    
    	u, _ := url.Parse("?watch=true")
    	req := &http.Request{Method: "GET", URL: u}
    	verbWithReq := &lazyVerb{req: req}
    	assert.Equal(t, "WATCH", fmt.Sprintf("%v", verbWithReq))
    }
    
    func TestLazyApiGroup(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    "\0A\0Amodule attributes {tf.versions = {producer = 888 : i32}} {\0A func.func @main(%arg0: tensor<?xi32>) -> tensor<?xi32> {\0A %0 = \22tf.Identity\22(%arg0) : (tensor<?xi32>) -> tensor<?xi32> loc(unknown)\0A return %0 : tensor<?xi32> loc(unknown)\0A } loc(unknown)\0A} loc(unknown)"
    
    // Test simple serialized computation consisting of a function named `main`
    // with a tf.Identity op forwarding the function single argument to the function
    // single result.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

            succeeds()
        }
    
        def "reports read unknown property from configure closure"() {
            buildFile << """
    tasks.help {
        println unknown
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not get unknown property 'unknown' for task ':help' of type org.gradle.configuration.Help.")
        }
    
        def "reports set unknown property from configure closure"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            when:
            dynamicObject.getProperty("unknown")
    
            then:
            def e = thrown(MissingPropertyException)
            e.property == "unknown"
            e.type == BeanWithMixInProperties
            e.message == "Could not get unknown property 'unknown' for object of type ${BeanWithMixInProperties.name}."
    
            when:
            dynamicObject.setProperty("unknown", 123)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top