Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for evalTo (0.1 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                ProgramTarget.Settings -> serviceRegistryOf(target as Settings)
                ProgramTarget.Gradle -> serviceRegistryOf(target as Gradle)
            }
        }
    
        fun eval(
            target: Any,
            scriptSource: ScriptSource,
            sourceHash: HashCode,
            scriptHandler: ScriptHandler,
            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher.go

    	}
    
    	errorList := []error{}
    	for _, evalResult := range evalResults {
    		matchCondition, ok := evalResult.ExpressionAccessor.(*MatchCondition)
    		if !ok {
    			// This shouldnt happen, but if it does treat same as eval error
    			klog.Error("Invalid type conversion to MatchCondition")
    			errorList = append(errorList, errors.New(fmt.Sprintf("internal error converting ExpressionAccessor to MatchCondition")))
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    			expectedErrorPrefix := `%s "sample" is forbidden: ValidatingAdmissionPolicy 'stable-channel-default-policy.istio.io' ` +
    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. cmd/testdata/xl-meta-merge.zip

    ¹ôc â NÄ ó7 Å Mƒ¤Type ¥V2ObjÞ ¢IDÄ 7 ›ÅK ¿÷]Œðœ¯ ¤DDirÄ øë ÖzD'¨E<‹ÞÆ-ئEcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ äªPartASizes‘Ñ ä¤SizeÑ ä¥MTimeÓ ¹ôc â N§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¬content-type¸application/octet-stream¤etagÙ 9fe7a344ef4227d3e537¡vÎeçnÐÄ$•Ä sÉöQð#Ef° ÌS Û|âÓ ¹ôb Îf­Ä ñ.È´ Å Mƒ¤Type ¥V2ObjÞ ¢IDÄ sÉöQð#Ef° ÌS Û|â¤DDirÄ #" ‘³sF"¥ URÄ,C ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/gw_topology_test.go

    				"imagePullSecret": t.Settings().Image.PullSecret,
    				"injectLabel":     injectLabel,
    				"imagePullPolicy": t.Settings().Image.PullPolicy,
    			}
    
    			// we only apply to config clusters
    			t.ConfigIstio().Eval(gatewayNs.Name(), templateParams, `apiVersion: v1
    kind: Service
    metadata:
      name: custom-gateway
      labels:
        istio: ingressgateway
    spec:
      ports:
      - port: 80
        targetPort: 8080
        name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/make.rc

    	echo 'make.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    # Clean old generated file that will cause problems in the build.
    rm -f ./runtime/runtime_defs.go
    
    # Determine the host compiler toolchain.
    eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
    
    vflag=()
    if(~ $1 -v) {
    	vflag=(-v)
    	shift
    }
    
    fn bootstrapenv {
    	GOROOT=$GOROOT_BOOTSTRAP GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $*
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    			policyDecision: []PolicyDecision{
    				{
    					Action:  ActionDeny,
    					Message: "test1", // original message used
    					Reason:  forbiddenReason,
    				},
    			},
    		},
    		{
    			name: "messageExpression eval to empty",
    			evaluations: []cel.EvaluationResult{
    				{
    					EvalResult: celtypes.False,
    					ExpressionAccessor: &ValidationCondition{
    						Reason:     &forbiddenReason,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

          tensorlike_value_2: A TensorLike value.
        """
        if isinstance(tensorlike_value_1, core.Tensor):
          tensorlike_value_1 = tensorlike_value_1.eval(session=sess)
    
        if isinstance(tensorlike_value_2, core.Tensor):
          tensorlike_value_2 = tensorlike_value_2.eval(session=sess)
    
        self.assertAllClose(tensorlike_value_1, tensorlike_value_2)
    
      def _assert_sample_values_all_close(
          self,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle_test.go

    	}
    
    	// Go back seven days in the past
    	now = now.Add(7 * 24 * time.Hour)
    
    	// Eval object 1
    	evt := lc.eval(obj1, now)
    	if evt.Action != NoneAction {
    		t.Fatalf("Expected action: %s but got %s", NoneAction, evt.Action)
    	}
    
    	// Eval object 2
    	evt = lc.eval(obj2, now)
    	if evt.Action != TransitionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionAction, evt.Action)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/run.bash

    # Defaults to 1.
    
    set -e
    
    if [ ! -f ../bin/go ]; then
    	echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2
    	exit 1
    fi
    
    export GOENV=off
    eval $(../bin/go tool dist env)
    
    unset CDPATH	# in case user has it set
    
    export GOHOSTOS
    export CC
    
    # no core files, please
    ulimit -c 0
    
    # Raise soft limits to hard limits for NetBSD/OpenBSD.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top