Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 254 for injecting (0.14 sec)

  1. cni/pkg/iptables/iptables.go

    	// as we are running within a privileged container - and we don't want to take the time to
    	// redetect for each pod anyway.
    	//
    	// Extreme corner case:
    	// If for some reason your host had both binaries, and you were injecting out-of-band
    	// iptables rules within a pod context into `legacy` tables, but your host context preferred
    	// `nft`, we would still inject our rules in-pod into nft tables, which is a bit wonky.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>configurator</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                The configurator type to use when injecting parameter values into this Mojo. The value is normally deduced
                from the Mojo's implementation language, but can be specified to allow a custom ComponentConfigurator
                implementation to be used.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager->addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    }
    
    // This is the later part of the conversion in isolation. This enables a caller
    // to resume the conversion after injecting more information in the middle of
    // it.
    void AddPostVariableFreezingTFToTFLConversionPasses(
        llvm::StringRef saved_model_dir, const toco::TocoFlags& toco_flags,
        const mlir::TFL::PassConfig& pass_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    				NumAllNodes: 1,
    				Diagnosis: framework.Diagnosis{
    					NodeToStatusMap: framework.NodeToStatusMap{
    						"3": framework.NewStatus(framework.Unschedulable, "injecting failure for pod test-filter").WithPlugin("FakeFilter"),
    					},
    					UnschedulablePlugins: sets.New("FakeFilter"),
    				},
    			},
    		},
    		{
    			name: "test with extender which filters out some Nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. src/runtime/crash_cgo_test.go

    	// symbolizer. See issue #23576.
    	if runtime.GOOS == "windows" {
    		// On Windows if we get an exception in C code, we let
    		// the Windows exception handler unwind it, rather
    		// than injecting a sigpanic.
    		t.Skip("no sigpanic in C on windows")
    	}
    	if runtime.GOOS == "ios" {
    		testenv.SkipFlaky(t, 59912)
    	}
    	t.Parallel()
    	got := runTestProg(t, "testprogcgo", "TracebackSigpanic")
    	t.Log(got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    An instance of the link:{javadocPath}/org/gradle/api/model/ObjectFactory.html[ObjectFactory] can be referenced from link:{javadocPath}/org/gradle/api/Project.html#getObjects--[Project.getObjects()] or by injecting `ObjectFactory` through a constructor or method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    		return 0, framework.NewStatus(framework.Code(inj.ScoreStatus), "injecting failure.")
    	}
    	return inj.ScoreRes, nil
    }
    
    func injectNormalizeRes(inj injectedResult, scores framework.NodeScoreList) *framework.Status {
    	if framework.Code(inj.NormalizeStatus) != framework.Success {
    		return framework.NewStatus(framework.Code(inj.NormalizeStatus), "injecting failure.")
    	}
    	for i := range scores {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    This is supported by having a constructor in your implementation of `ComponentMetadataRule` accepting the parameters that were configured and the services that need injecting.
    
    Gradle enforces isolation of instances of `ComponentMetadataRule`.
    This means that all parameters must be `Serializable` or known Gradle types that can be isolated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/injection/injection-image.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/slices"
    )
    
    // ImageAnalyzer checks the image of auto-injection configured with the running proxies on pods.
    type ImageAnalyzer struct{}
    
    var _ analysis.Analyzer = &ImageAnalyzer{}
    
    // injectionConfigMap is a snippet of the sidecar injection ConfigMap
    type injectionConfigMap struct {
    	Global global `json:"global"`
    }
    
    type global struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		func(runtime.Object) (runtime.Object, error) {
    			return obj, nil
    		}), nil); err != nil {
    		t.Fatalf("GuaranteedUpdate failed: %v", err)
    	}
    
    	// Now trigger watch error by injecting failing transformer.
    	revertTransformer := store.UpdatePrefixTransformer(
    		func(previousTransformer *PrefixTransformer) value.Transformer {
    			return &failingTransformer{}
    		})
    	defer revertTransformer()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top