Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 259 for reevaluate (0.26 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // will be discarded.
      //
      // Required.
      optional string key = 1;
    
      // valueExpression represents the expression which is evaluated by CEL to
      // produce an audit annotation value. The expression must evaluate to either
      // a string or null value. If the expression evaluates to a string, the
      // audit annotation is included with the string value. If the expression
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    	// Relevant binding for this hook.
    	// May be empty if there was an error with the policy's configuration itself
    	Binding B
    
    	// Compiled policy evaluator
    	Evaluator E
    
    	// Params fetched by the binding to use to evaluate the policy
    	Param runtime.Object
    
    	// Error is set if there was an error with the policy or binding or its
    	// params, etc
    	Error error
    }
    
    // dispatcherDelegate is called during a request with a pre-filtered list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

          (e.g. if it is a generator object).
        sess: Session instance used to evaluate tf.Tensors.
    
      Returns:
        The new representative dataset where each tf.Tensor is replaced by its
        evaluated numpy ndarrays.
      """
      new_repr_ds = []
      for sample in repr_ds:
        new_sample = {}
        for input_key, input_data in sample.items():
          # Evaluate the Tensor to get the actual value.
          if isinstance(input_data, core.Tensor):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            when:
            withBuildCache().run "compileJava"
            then:
            skipped ":compileJava"
            javaClassFile("Hello.class").exists()
        }
    
        def "error message contains spec which failed to evaluate"() {
            given:
            buildFile << """
                task adHocTask {
                    inputs.property("input") { true }
                    outputs.file("someFile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    	}
    
    	return nil
    }
    
    func setupEnvoyFilter(ctx framework.TestContext, file string) func() {
    	content, err := os.ReadFile(file)
    	if err != nil {
    		ctx.Fatal(err)
    	}
    
    	con, err := tmpl.Evaluate(string(content), map[string]any{
    		"EchoNamespace":      echoNsInst.Name(),
    		"RateLimitNamespace": ratelimitNs.Name(),
    	})
    	if err != nil {
    		ctx.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

                    XPath xpath = xPathFactory.newXPath();
                    XPathExpression expression = xpath.compile(PARSE_EXPRESSION);
    
                    NodeList nodes = (NodeList) expression.evaluate(documentBuilder.parse(toolchain), XPathConstants.NODESET);
                    Set<String> locations = new HashSet<>();
                    for (int i = 0; i < nodes.getLength(); i++) {
                        Node item = nodes.item(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

        }
    
        @Override
        public final String toString() {
            // Override #toStringNoReentrance instead
            return EvaluationContext.current().tryEvaluate(this, "<CIRCULAR REFERENCE>", this::toStringNoReentrance);
        }
    
        @Override
        public boolean isImmutable() {
            return false;
        }
    
        @Override
        public Class<?> publicType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                        ext.value = "from after evaluate"
                        doLast {
                            println "value: $value"
                        }
                    }
                }
            '''
    
            then:
            succeeds "fromAfterEvaluate"
    
            and:
            output.contains "value: from after evaluate and from container rule and from rule"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            null -> writeSmallInt(NULL_VALUE)
            else -> taggedEncodingFor(value.javaClass).run {
                writeSmallInt(tag)
                withDebugFrame({
                    // TODO:configuration-cache evaluate whether we need to unpack the type here
                    // GeneratedSubclasses.unpackType(value).typeName
                    value.javaClass.typeName
                }) {
                    encoding.run { encode(value) }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          return absl::InternalError("Input argument has wrong size");
        }
    
        // Convert input xla::Literal arguments to constants, this allows using
        // constant folding to evaluate function return value.
        mlir::OpBuilder builder(ctx_.get());
        for (int i = 0; i < arguments.size(); ++i) {
          const xla::Literal* const xla_literal = arguments[i];
          tensorflow::TensorShape shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top