Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 280 for inversion (0.39 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    		// Create CRs at all storage versions
    		objNames := []string{}
    		for _, version := range versions {
    			ctc.setAndWaitStorageVersion(t, version)
    
    			name := "mixedstorage-stored-as-" + version
    			obj, err := clients[version].Create(context.TODO(), newConversionMultiVersionFixture(ns, name, version), metav1.CreateOptions{})
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    func GetTestScheme() *runtime.Scheme {
    	internalGV := schema.GroupVersion{Version: runtime.APIVersionInternal}
    	externalGV := schema.GroupVersion{Version: "v1"}
    	alternateExternalGV := schema.GroupVersion{Group: "custom", Version: "v1"}
    	alternateInternalGV := schema.GroupVersion{Group: "custom", Version: runtime.APIVersionInternal}
    	differentExternalGV := schema.GroupVersion{Group: "other", Version: "v2"}
    
    	s := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top