Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 175 for inversion (0.54 sec)

  1. README.md

    * <abbr title="also known as: serialization, parsing, marshalling">Conversion</abbr> of input data: coming from the network to Python data and types. Reading from:
        * JSON.
        * Path parameters.
        * Query parameters.
        * Cookies.
        * Headers.
        * Forms.
        * Files.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	for _, hook := range hooks {
    		// versionedAttributes will be set to non-nil inside of the loop, but
    		// is scoped outside of the param loop so we only convert once. We defer
    		// conversion so that it is only performed when we know a policy matches,
    		// saving the cost of converting non-matching requests.
    		var versionedAttr *admission.VersionedAttributes
    
    		definition := hook.Policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      //===--------------------------------------------------------------------===//
    
      // Attempts to materialize a conversion for a type mismatch between a call
      // from this dialect, and a callable region. This method should generate an
      // operation that takes 'input' as the only operand, and produces a single
      // result of 'resultType'. If a conversion can not be generated, nullptr
      // should be returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_linux.go

    // without a container are moved to it.
    //
    // The reason of leaving kernel threads at root cgroup is that we don't want to tie the
    // execution of these threads with to-be defined /system quota and create priority inversions.
    func ensureSystemCgroups(rootCgroupPath string, manager cgroups.Manager) error {
    	// Move non-kernel PIDs to the system container.
    	// Only keep errors on latest attempt.
    	var finalErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. cmd/utils.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            final String text = value.trim();
    
            final Class<?> rawType = toType.getRawType();
            if (rawType.isAssignableFrom(String.class)) {
                return text; // compatible type => no conversion needed
            }
    
            // use temporary Key as quick way to auto-box primitive types into their equivalent object types
            final TypeLiteral<?> boxedType =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	"fmt"
    	"math"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/labels"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_test.go

    	}
    }
    
    // checkOpenSSLVersion ensures that the version of OpenSSL looks reasonable
    // before updating the test data.
    func checkOpenSSLVersion() error {
    	if !*update {
    		return nil
    	}
    
    	openssl := exec.Command("openssl", "version")
    	output, err := openssl.CombinedOutput()
    	if err != nil {
    		return err
    	}
    
    	version := string(output)
    	if strings.HasPrefix(version, "OpenSSL 1.1.1") {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    		cmd.Stderr = childLog
    	}
    
    	if reportCrashes {
    		pipe, err := cmd.StdinPipe()
    		if err != nil {
    			log.Fatalf("StdinPipe: %v", err)
    		}
    
    		crashmonitor.Parent(pipe.(*os.File)) // (this conversion is safe)
    	}
    
    	if err := cmd.Start(); err != nil {
    		log.Fatalf("can't start telemetry child process: %v", err)
    	}
    	result.wg.Add(1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/BUILD

    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    load(
        "//tensorflow/core/platform:build_config.bzl",
        "tf_proto_library",
    )
    
    # TF to TFRT kernels conversion.
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = [":friends"],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top