Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 197 for Canonicalize (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 1219 : i32}, tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    		r = _UK
    	}
    	if (r.typ() & ccTLD) == 0 {
    		return 0, errNoTLD
    	}
    	return r, nil
    }
    
    // Canonicalize returns the region or a possible replacement if the region is
    // deprecated. It will not return a replacement for deprecated regions that
    // are split into multiple regions.
    func (r Region) Canonicalize() Region {
    	if cr := normRegion(r); cr != 0 {
    		return cr
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	for _, finalizer := range newAdded.List() {
    		allWarnings = append(allWarnings, validateKubeFinalizerName(finalizer, fldPath)...)
    	}
    
    	return allWarnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (customResourceStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for CustomResources; this means a POST is
    // needed to create one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/go/types/context.go

    // concurrent use it is convenient not to guarantee de-duplication.
    //
    // Nevertheless, in the future it could be helpful to allow users to leverage
    // contexts to canonicalize instances, and it would probably be possible to
    // achieve such a guarantee.
    
    // A Context is an opaque type checking context. It may be used to share
    // identical type instances across type-checked packages or calls to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pkg/registry/core/service/strategy.go

    func (svcStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return serviceapi.GetWarningsForService(obj.(*api.Service), nil)
    }
    
    // Canonicalize normalizes the object after validation.
    func (svcStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (svcStrategy) AllowCreateOnUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/ctrlz/ctrlz.go

    		router.PathPrefix("/debug/pprof/").HandlerFunc(pprof.Index)
    	}
    	registerHome(router, mainLayout)
    
    	addr := o.Address
    	if addr == "*" {
    		addr = ""
    	}
    
    	// Canonicalize the address and resolve a dynamic port if necessary
    	listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, o.Port))
    	if err != nil {
    		log.Errorf("Unable to start ControlZ: %v", err)
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

          writeByte(' '.code)
          i++
          continue
        }
        writeUtf8CodePoint(codePoint)
        i += Character.charCount(codePoint)
      }
    }
    
    internal fun String.canonicalize(
      pos: Int = 0,
      limit: Int = length,
      encodeSet: String,
      alreadyEncoded: Boolean = false,
      strict: Boolean = false,
      plusIsSpace: Boolean = false,
      unicodeAllowed: Boolean = false,
    ): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    }
    
    TEST(CompileMlirUtil, CanonicalizationIsExplicitDuringInlining) {
      OpPassManager pass_manager;
      llvm::StringRef device_type = "XLA_CPU_JIT";
      absl::string_view kInlinePass =
          "inline{default-pipeline=canonicalize "
          "inlining-threshold=4294967295 max-iterations=4 }";
    
      CreateConvertMlirToXlaHloPipeline(pass_manager, device_type,
                                        /*enable_op_fallback=*/true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

            if (extensionPos > fileNameStart) {
                return filePath.substring(0, extensionPos);
            }
            return filePath;
        }
    
        /**
         * Canonicalizes the given file.
         */
        public static File canonicalize(File src) {
            try {
                return src.getCanonicalFile();
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //  * c is the index vector dimension
    //  * a,b iterate over the updates and indices
    //
    //  The update needs permuting to be in the form (a,b,d,e,f) so that the update
    //  window dims are the trailing dimensions.
    //
    // To canonicalize the updates above, replace the updates with:
    //   transpose(updates, permutation={3,4,0,1,2})
    //
    // Note: NormalizeIndexVector is assumed to have run on the indices already so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top