Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 189 for inversion (0.16 sec)

  1. src/runtime/runtime.go

    const minTimeForTicksPerSecond = 5_000_000*(1-osHasLowResClockInt) + 100_000_000*osHasLowResClockInt
    
    // ticksPerSecond returns a conversion rate between the cputicks clock and the nanotime clock.
    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top