Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for injectLabel (0.36 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                        } catch (IllegalAccessException e) {
                            throw new DIException("Not allowed to call injectable method " + method, e);
                        } catch (InvocationTargetException e) {
                            throw new DIException("Failed to call injectable method " + method, e.getCause());
                        }
                    };
                }
            };
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        def "offers plugin management via injectable plugin type "() {
            when:
            def plugin = container.apply(CustomPluginWithInjection)
    
            then:
            container.hasPlugin(CustomPluginWithInjection)
            container.getPlugin(CustomPluginWithInjection) == plugin
            container.findPlugin(CustomPluginWithInjection) == plugin
        }
    
        def "id-based injectable plugins can be found by their id"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/ipvs.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ipvs
    
    import (
    	"net"
    	"strconv"
    	"strings"
    	"time"
    )
    
    // Interface is an injectable interface for running ipvs commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// Flush clears all virtual servers in system. return occurred error immediately.
    	Flush() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            fails 'producer'
    
            then:
            failureCauseContains "Property 'text' cannot carry a dependency on task ':producer' as these are not yet supported."
        }
    
        def '#scriptTarget action can use injectable #simpleServiceTypeName'() {
            given:
            groovyFile scriptTarget.fileName, """
                import org.gradle.api.flow.*
    
                class FlowActionInjectionPlugin implements Plugin<$targetType> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    	return &operationGenerator{
    		recorder: recorder,
    	}
    }
    
    // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
    type OperationGenerator interface {
    	// Generates the RegisterPlugin function needed to perform the registration of a plugin
    	GenerateRegisterPluginFunc(
    		socketPath string,
    		timestamp time.Time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/ipset/ipset.go

    	"strconv"
    	"strings"
    
    	"k8s.io/klog/v2"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    )
    
    var validationError = fmt.Errorf("failed to validate entry for ipset")
    
    // Interface is an injectable interface for running ipset commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// FlushSet deletes all entries from a named set.
    	FlushSet(set string) error
    	// DestroySet deletes a named set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

            type: string
          - name: resourceName
            type: string
    
      - name: "NamespaceInjectionEnabledByDefault"
        code: IST0148
        level: Info
        description: "user namespace should be injectable if Istio is installed with enableNamespacesByDefault enabled and neither injection label is set."
        template: "is enabled for Istio injection, as Istio is installed with enableNamespacesByDefault as true."
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. docs/tr/docs/alternatives.md

    Angular 2'den ilham alan, içine gömülü bir <abbr title="Bağımlılık enjeksiyonu: Dependency Injection">bağımlılık enjeksiyonu</abbr> sistemi var. Bildiğim diğer tüm bağımlılık enjeksiyonu sistemlerinde olduğu gibi"<abbr title="Injectable: dependency injection sistemi tarafından enjekte edilecek dependency (bağımlılık)">bağımlılık</abbr>"ları önceden kaydetmenizi gerektiriyor. Böylece projeyi daha detaylı hale getiriyor ve kod tekrarını da arttırıyor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables.go

    type RulePosition string
    
    const (
    	// Prepend is the insert flag for iptable
    	Prepend RulePosition = "-I"
    	// Append is the append flag for iptable
    	Append RulePosition = "-A"
    )
    
    // Interface is an injectable interface for running iptables commands.  Implementations must be goroutine-safe.
    type Interface interface {
    	// EnsureChain checks if the specified chain exists and, if not, creates it.  If the chain existed, return true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.gen.go

    	// NamespaceInjectionEnabledByDefault defines a diag.MessageType for message "NamespaceInjectionEnabledByDefault".
    	// Description: user namespace should be injectable if Istio is installed with enableNamespacesByDefault enabled and neither injection label is set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top