Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for inversion (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    }
    
    // CustomResourceDefinitionVersion describes a version for CRD.
    type CustomResourceDefinitionVersion struct {
    	// Name is the version name, e.g. “v1”, “v2beta1”, etc.
    	Name string
    	// Served is a flag enabling/disabling this version from being served via REST APIs
    	Served bool
    	// Storage flags the version as storage version. There must be exactly one flagged
    	// as storage version.
    	Storage bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds.go

    // This is the main method implementing EDS.
    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    // the hostname-keyed map. And it avoids the conversion from Endpoint to ServiceEntry to envoy
    // on each step: instead the conversion happens once, when an endpoint is first discovered.
    func (s *DiscoveryServer) EDSUpdate(shard model.ShardKey, serviceName string, namespace string,
    	istioEndpoints []*model.IstioEndpoint,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/dns/proto/nds.pb.go

    	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    	reflect "reflect"
    	sync "sync"
    )
    
    const (
    	// Verify that this generated code is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    	// Verify that runtime/protoimpl is sufficiently up-to-date.
    	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    )
    
    // Table of hostnames and their IPs to br used for DNS resolution at the agent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        This is considered an aggressive optimization, but it is useful to eliminate
        `stablehlo.constant`->`stablehlo.transpose` patterns which are often
        by-products of other shape conversion optimizations, such as NCHW->NHWC
        convolution conversion.
      }];
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    
    def RemoveShardingCustomCallPass : Pass<"stablehlo-remove-sharding-custom-call", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    // panicdottypeE is called when doing an e.(T) conversion and the conversion fails.
    // have = the dynamic type we have.
    // want = the static type we're trying to convert to.
    // iface = the static type we're converting from.
    func panicdottypeE(have, want, iface *_type) {
    	panic(&TypeAssertionError{iface, have, want, ""})
    }
    
    // panicdottypeI is called when doing an i.(T) conversion and the conversion fails.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

      // Here we construct the `toco::Model` class based on the input graph def,
      // it will then be used to populate the conversion log.
      // TODO(haoliang): Don't depend on `toco::Model`.
      std::unique_ptr<toco::Model> imported_model =
          toco::Import(*toco_flags, model_flags, input_contents_txt);
      // Dump pre-conversion toco logs.
      toco::TocoConversionLog toco_log_before;
      PopulateConversionLog(*imported_model, &toco_log_before);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top