Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,697 for buildop (0.2 sec)

  1. pilot/pkg/security/authz/builder/builder.go

    	}
    	if configs := b.build(b.allowPolicies, rbacpb.RBAC_ALLOW, false); configs != nil {
    		b.logger.AppendDebugf("built %d HTTP filters for ALLOW action", len(configs.http))
    		filters = append(filters, configs.http...)
    	}
    	return filters
    }
    
    // BuildTCP returns the TCP filters built from the authorization policy.
    func (b Builder) BuildTCP() []*listener.Filter {
    	b.logger = &AuthzLogger{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

    /**
     * <p>
     * A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
     * the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
     * </p>
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     */
    public interface Builder {
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    func (c *CRDCanonicalTypeNamer) OpenAPICanonicalTypeName() string {
    	return fmt.Sprintf("%s/%s.%s", c.group, c.version, c.kind)
    }
    
    // builder contains validation schema and basic naming information for a CRD in
    // one version. The builder works to build a WebService that kube-openapi can
    // consume.
    type builder struct {
    	schema     *spec.Schema
    	listSchema *spec.Schema
    	ws         *restful.WebService
    
    	group    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Builder.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 927 bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    		// in the plugin's pseudo-import path returned below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/model-builder-plugin/build.gradle

    plugins {
        id 'java-gradle-plugin'
    }
    
    group = 'reporters'
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            'model-builder-plugin' {
                id = 'reporters.model.builder'
                implementationClass = 'reporters.ModelBuilderPlugin'
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 287 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customModel/internalViews/groovy/build.gradle

    // tag::type-registration[]
    // tag::internal-view-mutation[]
    class MyPlugin extends RuleSource {
    // end::internal-view-mutation[]
        @ComponentType
        void registerMyComponent(TypeBuilder<MyComponent> builder) {
            builder.internalView(MyComponentInternal)
        }
    // end::type-registration[]
    // tag::internal-view-mutation[]
        @Mutate
        void mutateMyComponents(ModelMap<MyComponentInternal> components) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentValue.kt

    fun test() {
        buildFoo {
            value = <expr>produceString()</expr>
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    fun Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 258 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/assignmentTarget.kt

    fun test() {
        buildFoo {
            <expr>value</expr> = produceString()
        }
    }
    
    fun buildFoo(builder: Foo.() -> Unit): Foo {
        val foo = Foo()
        foo.builder()
        return foo
    }
    
    class Foo {
        var value: String? = null
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 260 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/build.gradle

    plugins {
        id 'reporters.model.builder'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 45 bytes
    - Viewed (0)
Back to top