Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 280 for inversion (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                return true;
            }
    
            // Check for identity or widening reference conversion
            if (actual != null && formal.isAssignableFrom(actual)) {
                return true;
            }
    
            // Check for boxing with widening primitive conversion. Note that
            // actual parameters are never primitives.
            if (formal.isPrimitive()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. src/crypto/tls/conn_test.go

    	tlsConn := Server(server, config)
    	if err := tlsConn.Handshake(); err != nil {
    		t.Errorf("Error from client handshake: %v", err)
    		return
    	}
    
    	expectedErr := "tls: received record with version 1111 when expecting version 303"
    
    	_, err := tlsConn.Read(make([]byte, 10))
    	if err.Error() != expectedErr {
    		t.Fatalf("unexpected error: got %q, want %q", err, expectedErr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

                    "id 'noop'",
                    "id('noop').version('bar')",
                    "id 'noop' version 'bar'",
                    "id('noop').\nversion 'bar'",
                    "id('java');id('noop')",
                    "id('java')\nid('noop')",
                    "id('noop').version('bar');id('java')",
                    "id('noop').version('bar')\nid('java')",
                    "id 'noop' apply false",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // result contains the result of conversion with extra details if the conversion failed. `result.status` determines if
      // the conversion failed or succeeded. The `result.status` field is required and represents the success or failure of the
      // conversion. A successful conversion must set `result.status` to `Success`. A failed conversion must set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

            val conversion = FirToKtConversionCreator.createConversion(diagnosticParameter.type)
            val convertedType = conversion.convertType(diagnosticParameter.type)
            return HLDiagnosticParameter(
                name = diagnosticParameter.name,
                conversion = conversion,
                originalParameterName = ('a' + index).toString(),
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/crypto/tls/bogo_shim_test.go

    	keyfile  = flag.String("key-file", "", "")
    	certfile = flag.String("cert-file", "", "")
    
    	trustCert = flag.String("trust-cert", "", "")
    
    	minVersion = flag.Int("min-version", VersionSSL30, "")
    	maxVersion = flag.Int("max-version", VersionTLS13, "")
    
    	noTLS13 = flag.Bool("no-tls13", false, "")
    
    	requireAnyClientCertificate = flag.Bool("require-any-client-certificate", false, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    // Unstructured in both ways.
    type unstructuredConverter struct {
    	// If true, we will be additionally running conversion via json
    	// to ensure that the result is true.
    	// This is supposed to be set only in tests.
    	mismatchDetection bool
    	// comparison is the default test logic used to compare
    	comparison conversion.Equalities
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  8. cni/pkg/plugin/plugin.go

    	var result *cniv1.Result
    	if conf.PrevResult == nil {
    		result = &cniv1.Result{
    			CNIVersion: cniv1.ImplementedSpecVersion,
    		}
    		return types.PrintResult(result, conf.CNIVersion)
    	}
    
    	// Pass through the result for the next plugin
    	return types.PrintResult(conf.PrevResult, conf.CNIVersion)
    }
    
    func CmdCheck(args *skel.CmdArgs) (err error) {
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/mdo/writer-stax.vm

    #
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #set ( $xmlModelMetadata = $model.getMetadata( "org.codehaus.modello.plugins.xml.metadata.XmlModelMetadata" ) )
    #if ( $forcedIOModelVersion )
      #set ( $Version = $model.class.classLoader.loadClass( "org.codehaus.modello.model.Version" ) )
      #set ( $ioVersion = $Version.getConstructor( $package.class ).newInstance( $forcedIOModelVersion ) )
    #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                    doLast {
                        // Explicit SAM conversion
                        println(create("foo", NamedDomainObjectFactory<String> { it.toUpperCase() }))
                        // Explicit SAM conversion with generic type argument inference
                        println(create<String>("bar", NamedDomainObjectFactory { it.toUpperCase() }))
                        // Implicit SAM conversion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top