Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,140 for pass2 (0.13 sec)

  1. pkg/kubelet/kuberuntime/security_context_windows_test.go

    		username string
    		fail     bool
    	}{
    		{
    			desc:     "Pass if SecurityContext is not set",
    			sc:       nil,
    			username: rootUser,
    			fail:     false,
    		},
    		{
    			desc: "Pass if RunAsNonRoot is not set",
    			sc: &v1.SecurityContext{
    				RunAsNonRoot: nil,
    			},
    			username: rootUser,
    			fail:     false,
    		},
    		{
    			desc: "Pass if RunAsNonRoot is false (image user is root)",
    			sc: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 02:29:11 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.h

    #include <memory>
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Create a pass that removes function arguments that map to global tensors.
    std::unique_ptr<Pass> CreateLowerGlobalsToMlProgramPass();
    
    // Register this pass in the global registry of MLIR.
    void RegisterLowerGlobalsToMlProgramPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 14:17:18 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/data_dumper_logger_config.h

          bool print_after_only_on_change = true,
          mlir::OpPrintingFlags op_printing_flags = mlir::OpPrintingFlags());
    
      void printBeforeIfEnabled(mlir::Pass *pass, mlir::Operation *op,
                                PrintCallbackFn print_callback) override;
    
      void printAfterIfEnabled(mlir::Pass *pass, mlir::Operation *op,
                               PrintCallbackFn print_callback) override;
    
     private:
      static void DumpMlir(const std::string &filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 00:41:24 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/check_accepted_ops_pass.h

    #include <string>
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Creates a pass which checks if there exists allowed dialect ops only or not.
    // Based on the list of dialect and op names, it signals failure or not.
    // If some ops are in the `optional_accepted_dialects`, then it warns them.
    std::unique_ptr<Pass> createCheckAcceptedOpsPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 02 19:10:29 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/order_by_dialect.h

    #include <memory>
    
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Create an instance of a pass that reorders ops so ops of the same dialect are
    // next to each other.
    std::unique_ptr<Pass> CreateOrderByDialectPass();
    
    // Register this pass in the global registry of MLIR.
    void RegisterOrderByDialectPass();
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 14:17:18 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4ClassLevelFilteringIntegrationTest.groovy

                    }
                }
            """.stripIndent()
    
            when:
            run("test", "--tests", "FooTest.pass")
    
            then:
            def result = new DefaultTestExecutionResult(testDirectory)
            result.assertTestClassesExecuted("FooTest")
            result.testClass("FooTest").assertTestsExecuted("other", "pass")
    
            when:
            fails("test", "--tests", "FooTest.ignored")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfold_splat_constant_pass.cc

    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassRegistry.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    #define DEBUG_TYPE "unfold-splat-constant-pass"
    
    #define GEN_PASS_DEF_UNFOLDSPLATCONSTANTPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    	asmControlFlow = re(`^(J|RET)`)
    )
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	if build.Default.GOARCH != "amd64" { // TODO: arm64 also?
    		return nil, nil
    	}
    	if build.Default.GOOS != "linux" && build.Default.GOOS != "darwin" {
    		return nil, nil
    	}
    
    	// Find assembly files to work on.
    	var sfiles []string
    	for _, fname := range pass.OtherFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    	if free.Has(V) || free.Has(T) {
    		return nil
    	}
    	if f, wrongType := types.MissingMethod(V, T, false); wrongType {
    		return f
    	}
    	return nil
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    	nodeFilter := []ast.Node{
    		(*ast.TypeAssertExpr)(nil),
    		(*ast.TypeSwitchStmt)(nil),
    	}
    	var free typeparams.Free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                             /*successors=*/false);
    
      // Locate which variable inputs are part of the forwards pass. These will
      // also be used in the backwards pass. We need to create a 'private' copy
      // of the TpuReplicatedInput for for the fowards pass if there are users
      // outside the pass. Note that in the case of the backwards pass existing
      // this will be the case.
      // This means that when we have put all out sections together some resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top