Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,536 for Enforce (0.34 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

      using OpRewritePattern<mhlo::BatchNormInferenceOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(mhlo::BatchNormInferenceOp bn_op,
                                    PatternRewriter &rewriter) const override {
        // Enforce type invariants.
        // Note that we deduce the actual element type from the variance,
        // which should not be subject to quantization at a higher level.
        auto input_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * remotely resolved snapshot artifact gets passed into pathOf(). So producing a proper local artifact path
             * using DefaultRepositoryLayout requires us to enforce usage of the artifact's base version. This
             * transformation however contradicts the other use case of precisely obeying the repository's layout. The below
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    - Configure the project, according to conventions (e.g. add new tasks or configure sensible defaults).
    - Apply specific configuration (e.g. add organizational repositories or enforce standards).
    - Add new properties and methods to existing types via extensions.
    
    == Step 2. Applying a Plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. cmd/importverifier/importverifier.go

    	// This is a directory which `go list` might not consider a package (if it
    	// has not .go files)
    	BaseDir string `yaml:"baseImportPath"`
    	// IgnoredSubTrees are roots of sub-trees of the BaseDir for which we do
    	// not want to enforce any import restrictions whatsoever, given as
    	// relative paths from the root of the repository.
    	IgnoredSubTrees []string `yaml:"ignoredSubTrees,omitempty"`
    	// AllowedImports are roots of package trees that are allowed to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			}{
    				// Mutual Connection is originated by our DR but server side drops the connection to
    				// only use Simple TLS as it doesn't verify client side cert
    				// TODO: mechanism to enforce mutual TLS(client cert) validation by the server
    				// 1. Mutual TLS origination from egress gateway to https endpoint:
    				//    internalClient ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. hack/golangci.yaml

              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/net/http/sniff.go

    		ct:   "image/webp",
    	},
    	&exactSig{[]byte("\x89PNG\x0D\x0A\x1A\x0A"), "image/png"},
    	&exactSig{[]byte("\xFF\xD8\xFF"), "image/jpeg"},
    
    	// Audio and Video types
    	// Enforce the pattern match ordering as prescribed in
    	// https://mimesniff.spec.whatwg.org/#matching-an-audio-or-video-type-pattern
    	&maskedSig{
    		mask: []byte("\xFF\xFF\xFF\xFF\x00\x00\x00\x00\xFF\xFF\xFF\xFF"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_ppc64x.s

    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // For more details about how various memory models are
    // enforced on POWER, the following paper provides more
    // details about how they enforce C/C++ like models. This
    // gives context about why the strange looking code
    // sequences below work.
    //
    // http://www.rdrop.com/users/paulmck/scalability/paper/N2745r.2011.03.04a.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/internal/filepathlite/path_windows.go

    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    		// Path starts with a drive letter.
    		//
    		// Not all Windows functions necessarily enforce the requirement that
    		// drive letters be in the set A-Z, and we don't try to here.
    		//
    		// We don't handle the case of a path starting with a non-ASCII character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/kube-addons-test.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # These tests enforce behavior of kube-addon-manager functions against a real
    # cluster. A working Kubernetes cluster must be set up with kubectl configured.
    # To run with the released version of kubectl, use `make test`.
    
    set -o errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
Back to top