Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for VerifierT (0.13 sec)

  1. operator/cmd/mesh/install.go

    		l.LogAndPrint("\n\nVerifying installation:")
    		installationVerifier, err := verifier.NewStatusVerifier(kubeClient, client, iop.Namespace, iArgs.ManifestsPath,
    			iArgs.InFilenames, clioptions.ControlPlaneOptions{Revision: iop.Spec.Revision},
    			verifier.WithLogger(l),
    			verifier.WithIOP(iop),
    		)
    		if err != nil {
    			return fmt.Errorf("failed to setup verifier: %v", err)
    		}
    		if err := installationVerifier.Verify(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. Makefile

    	@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
    
    crosscompile: ## cross compile minio
    	@(env bash $(PWD)/buildscripts/cross-compile.sh)
    
    verifiers: lint check-gen
    
    check-gen: ## check for updated autogenerated files
    	@go generate ./... >/dev/null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/path-params.md

    
    ```Python hl_lines="7"
    {!../../../docs_src/path_params/tutorial002.py!}
    ```
    
    Ici, `item_id` est déclaré comme `int`.
    
    !!! check "vérifier"
        Ceci vous permettra d'obtenir des fonctionnalités de l'éditeur dans votre fonction, telles
        que des vérifications d'erreur, de l'auto-complétion, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Tools/mlir-translate/Translation.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    		return nil
    	}
    
    	caBundleAndVerifier, err := newCABundleAndVerifier(c.Name(), caBundle)
    	if err != nil {
    		return err
    	}
    	c.caBundle.Store(caBundleAndVerifier)
    	klog.V(2).InfoS("Loaded a new CA Bundle and Verifier", "name", c.Name())
    
    	for _, listener := range c.listeners {
    		listener.Enqueue()
    	}
    
    	return nil
    }
    
    // hasCAChanged returns true if the caBundle is different than the current.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. cmd/naughty-disk_test.go

    }
    
    func (d *naughtyDisk) ReadFile(ctx context.Context, volume string, path string, offset int64, buf []byte, verifier *BitrotVerifier) (n int64, err error) {
    	if err := d.calcError(); err != nil {
    		return 0, err
    	}
    	return d.disk.ReadFile(ctx, volume, path, offset, buf, verifier)
    }
    
    func (d *naughtyDisk) ReadFileStream(ctx context.Context, volume, path string, offset, length int64) (io.ReadCloser, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. cmd/storage-rest-client.go

    	values := make(url.Values)
    	values.Set(storageRESTVolume, volume)
    	values.Set(storageRESTFilePath, path)
    	values.Set(storageRESTOffset, strconv.Itoa(int(offset)))
    	values.Set(storageRESTLength, strconv.Itoa(len(buf)))
    	if verifier != nil {
    		values.Set(storageRESTBitrotAlgo, verifier.algorithm.String())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. docs/fr/docs/index.md

        * Vérifier qu'il a un attribut obligatoire `name` qui devrait être un `str`.
        * Vérifier qu'il a un attribut obligatoire `prix` qui doit être un `float`.
        * Vérifier qu'il a un attribut facultatif `is_offer`, qui devrait être un `bool`, s'il est présent.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

          return true;
        }
        *serialized_model = std::string{std::istreambuf_iterator<char>(t),
                                        std::istreambuf_iterator<char>()};
      }
    
      flatbuffers::Verifier model_verifier(
          reinterpret_cast<const uint8_t*>(serialized_model->c_str()),
          serialized_model->length());
      if (!model_verifier.VerifyBuffer<Model>()) {
        std::cerr << "Verification failed.\n";
        return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            ScriptSource source, ClassLoader classLoader, File classesDir, File metadataDir, CompileOperation<?> extractingTransformer,
            Class<? extends Script> scriptBaseClass, Action<? super ClassNode> verifier
        ) {
            Timer clock = Time.startTimer();
            try {
                deleter.ensureEmptyDirectory(classesDir);
            } catch (IOException ioex) {
                throw new UncheckedIOException(ioex);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top