Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 587 for Replies (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/rule.go

    	GetVerbs() []string
    	// GetAPIGroups return the names of the APIGroup that contains the resources.
    	GetAPIGroups() []string
    	// GetResources return a list of resources the rule applies to.
    	GetResources() []string
    	// GetResourceNames return a white list of names that the rule applies to.
    	GetResourceNames() []string
    }
    
    // DefaultResourceRuleInfo holds information that describes a rule for the resource
    type DefaultResourceRuleInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 11:09:43 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. docs/en/docs/fastapi-people.md

    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Questions replied: {{ user.count }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    ### FastAPI Experts - 3 Months
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/ConventionsInterpretationSequenceStep.kt

    import org.gradle.internal.declarativedsl.analysis.DefaultOperationGenerationId
    import org.gradle.internal.declarativedsl.analysis.and
    import org.gradle.internal.declarativedsl.analysis.implies
    import org.gradle.internal.declarativedsl.common.dependencyCollectors
    import org.gradle.internal.declarativedsl.common.gradleDslGeneralSchema
    import org.gradle.internal.declarativedsl.evaluationSchema.SimpleInterpretationSequenceStep
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Rel_Neighbor(pluginPlugin, pluginEmbedded, "Configures")
                Rel(pluginPlugin, pluginPrecompiled, "Configures")
                Rel_Neighbor(pluginPrecompiled, pluginDevPlugin, "Applies", "and configures")
            }
    
    
            Container_Boundary(tapiBuilder, "IDE ToolingAPI Models") {
    
                Component(tapiModels, "TAPI Models", "classpath, sourcepath, implicit imports, user reports")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    }
    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir::quant {
    namespace {
    
    // Applies optimization after quantization.
    class OptimizePass
        : public PassWrapper<OptimizePass, OperationPass<func::FuncOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizePass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/apis/abac/types.go

    	Spec PolicySpec
    }
    
    // PolicySpec contains the attributes for a policy rule
    type PolicySpec struct {
    
    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	User string
    
    	// Group is the group this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all groups.
    	Group string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. pkg/apis/abac/v1beta1/types.go

    }
    
    // PolicySpec contains the attributes for a policy rule
    type PolicySpec struct {
    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	// +optional
    	User string `json:"user,omitempty"`
    
    	// Group is the group this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all groups.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCache.java

         * Defaults to an empty array, meaning this annotation applies to all bottom specs.
         */
        String[] bottomSpecs() default {};
    
        /**
         * Declare regular expressions matching the iteration name.
         * Defaults to an empty array, meaning this annotation applies to all iterations of the annotated feature.
         */
        String[] iterationMatchers() default {};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top