Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 277 for inversion (2.88 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/webhook.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package conversion
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/json"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 01:38:09 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/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
    - 41.8K bytes
    - Viewed (0)
Back to top