Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for Evaluators (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    	// CompilationErrors returns a list of errors from the compilation of the evaluator
    	CompilationErrors() []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conventions/ConventionsResolutionProcessor.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.conventions
    
    import org.gradle.internal.declarativedsl.analysis.AssignmentRecord
    import org.gradle.internal.declarativedsl.analysis.DataAdditionRecord
    import org.gradle.internal.declarativedsl.analysis.NestedObjectAccessRecord
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/dist/buildtag.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    // exprParser is a //go:build expression parser and evaluator.
    // The parser is a trivial precedence-based parser which is still
    // almost overkill for these very simple expressions.
    type exprParser struct {
    	x string
    	t exprToken // upcoming token
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 03:35:04 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/software/schemaFromSoftwareTypes.kt

    import org.gradle.internal.declarativedsl.evaluationSchema.FixedTypeDiscovery
    import org.gradle.internal.declarativedsl.evaluationSchema.ObjectConversionComponent
    import org.gradle.internal.declarativedsl.evaluator.softwareTypes.SOFTWARE_TYPE_ACCESSOR_PREFIX
    import org.gradle.internal.declarativedsl.mappingToJvm.RuntimeCustomAccessors
    import org.gradle.internal.declarativedsl.schemaBuilder.DataSchemaBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission_test.go

    type fakeEvaluator struct{}
    
    func (fakeEvaluator) Evaluate(a admission.Attributes) error {
    	return errors.New("should not be called")
    }
    
    func TestExcludedOperations(t *testing.T) {
    	a := &QuotaAdmission{
    		evaluator: fakeEvaluator{},
    	}
    	testCases := []struct {
    		desc string
    		attr admission.Attributes
    	}{
    		{
    			"subresource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	"k8s.io/apiserver/pkg/storage"
    	"k8s.io/client-go/kubernetes"
    	corev1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/utils/lru"
    )
    
    // QuotaAccessor abstracts the get/set logic from the rest of the Evaluator.  This could be a test stub, a straight passthrough,
    // or most commonly a series of deconflicting caches.
    type QuotaAccessor interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            mavenSession.getRequest().setRootDirectory(path);
            DefaultModelBuildingRequest mbr = new DefaultModelBuildingRequest();
    
            PluginParameterExpressionEvaluator evaluator =
                    new PluginParameterExpressionEvaluator(mavenSession, new MojoExecution(null));
    
            DefaultPlexusConfiguration configuration = new DefaultPlexusConfiguration("config");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

        init {
            register {
                add(GradleUserHomeTemporaryFileProvider::class.java, GradleUserHomeTemporaryFileProvider { baseTempDir })
            }
        }
    }
    
    
    /**
     * A simplified Kotlin script evaluator, suitable for cheaper testing of the DSL outside Gradle.
     */
    private
    class SimplifiedKotlinScriptEvaluator(
        private val baseCacheDir: File,
        private val baseTempDir: File,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    				}
    			},
    			want: true,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			evaluator := &policyRuleEvaluator{
    				Policy: test.policy(),
    			}
    
    			got := evaluator.EvaluatePolicyRule(attributes)
    			if test.want != got.OmitManagedFields {
    				t.Errorf("Expected OmitManagedFields to match, want: %t, got: %t", test.want, got.OmitManagedFields)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            mavenSession.getRequest().setRootDirectory(path);
            DefaultModelBuildingRequest mbr = new DefaultModelBuildingRequest();
    
            PluginParameterExpressionEvaluatorV4 evaluator =
                    new PluginParameterExpressionEvaluatorV4(mavenSession.getSession(), null);
    
            DefaultPlexusConfiguration configuration = new DefaultPlexusConfiguration("config");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top