Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,011 for unknownI (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    }`
    
    	var combinedErrs = []string{
    		`unknown field "ca[1].unknown1"`,
    		`unknown field "ca[2].unknown2"`,
    		`unknown field "ba.unknown3"`,
    		`unknown field "ba.unknown4"`,
    		`unknown field "unknown5"`,
    		`unknown field "ha.unknownH"`,
    		`unknown field "ia.unknownI"`,
    
    		`unknown field "ul1.b"`,
    		`unknown field "ul1.bb"`,
    		`unknown field "ul1.bbb"`,
    		`unknown field "ul1.c"`,
    		`unknown field "ul1.cc"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/func_with_dead_ops.mlir

        %0 = "tf.ReadVariableOp"(%arg19)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

            failure.assertHasCause("Could not set unknown property 'modue' for object of type org.gradle.api.internal.artifacts.DefaultExcludeRule.")
        }
    
        void "makes no attempt to resolve an excluded dependency"() {
            given:
            mavenRepo.module('org.gradle.test', 'external', '1.0')
                .dependsOn('org.gradle.test', 'unknown1', '1.0')
                .dependsOn('org.gradle.test', 'unknown2', '1.0').publish()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

    // CHECK: [[UNKNOWN0:%.+]] = tf_executor.island([[READ0]], [[READ1]], [[READ2]], [[LOAD0]], [[READ3]], [[LOAD1]]) wraps "tf.UnknownOp"
    // CHECK: [[UNKNOWN1:%.+]] = tf_executor.island([[UNKNOWN0]]) wraps "tf.UnknownOp"
    // CHECK: [[LOAD2:%.+]] = tf_executor.island([[UNKNOWN1]]) wraps "tf.LoadTPUEmbeddingAdagradParameters"
    // CHECK: [[LOAD3:%.+]] = tf_executor.island([[UNKNOWN1]]) wraps "tf.LoadTPUEmbeddingAdagradParameters"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            lineNumber | code                                         | msg
            2          | 'id("noop").version("${unknown}")'           | "Could not get unknown property 'unknown'"
            2          | 'id("noop").version("part-${unknown}-part")' | "Could not get unknown property 'unknown'"
        }
    
        def "fails to interpolate unknown property in settings plugins block"() {
            when:
            settingsFile.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            when:
            parser.parse(['--unknown'])
    
            then:
            def e = thrown(CommandLineArgumentException)
            e.message == 'Unknown command-line option \'--unknown\'.'
        }
    
        def parseFailsWhenCommandLineContainsUnknownLongOptionWithSingleDashes() {
            when:
            parser.parse(['-unknown'])
    
            then:
            def e = thrown(CommandLineArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
Back to top