Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 368 for injecting (0.2 sec)

  1. 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)
  2. pilot/pkg/config/file/store.go

    		inner:   memory.MakeSkipValidation(schemas),
    		shas:    make(map[kubeResourceKey]resourceSha),
    		byFile:  make(map[string]map[kubeResourceKey]config.GroupVersionKind),
    	}
    }
    
    // SetDefaultNamespace enables injecting a default namespace for resources where none is already specified
    func (s *KubeSource) SetDefaultNamespace(defaultNs resource.Namespace) {
    	s.defaultNs = defaultNs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K 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. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    		defer conn.Close() //nolint:errcheck
    		<-stopServerChan
    	}))
    	defer spdyServer.Close()
    	// Create UpgradeAwareProxy handler, with url/transport pointing to upstream SPDY. Then
    	// create TunnelingHandler by injecting upgrade handler. Create TunnelingServer.
    	url, err := url.Parse(spdyServer.URL)
    	require.NoError(t, err)
    	transport, err := fakeTransport()
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    In Gradle 6.0, the `ProjectLayout` service was made available to worker actions via service injection.
    This service allowed for mutable state to leak into a worker action and introduced a way for dependencies to go undeclared in the worker action.
    
    `ProjectLayout` has been removed from the available services.  Worker actions that were using `ProjectLayout` should switch to injecting the `projectDirectory` or `buildDirectory` as a parameter instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top