Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 190 for evalTo (0.24 sec)

  1. buildscripts/cicd-corpus/disk4/bucket/testobj/xl.meta

    �MetaUsr��X-Amz-Replication-Status�REPLICA�etag� 9587ddd31fead633830366f45d221d56�content-type�application/octet-stream�x-amz-storage-class�STANDARD�$��PPb�I(��e��(�������������Ղ�Type�V2Obj��ID�PPb�I(��e��(�ǤDDir�+O~A߂J^�����3/�EcAlgo�EcM�EcN�EcBSize��EcIndex�EcDist��CSumAlgo�PartNums��PartETags��PartSizes��	ը�PartASizes��	ը�Size�	ը�MTime�����çMetaSys��"x-minio-internal-replica-timestamp�2022-03-20T15:15:01.584169645Z�x-minio-internal-replica-status�REPL...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 20 19:49:05 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/imports/build.go

    	case *constraint.NotExpr:
    		return !eval(x.X, tags, !prefer)
    	case *constraint.AndExpr:
    		return eval(x.X, tags, prefer) && eval(x.Y, tags, prefer)
    	case *constraint.OrExpr:
    		return eval(x.X, tags, prefer) || eval(x.Y, tags, prefer)
    	}
    	panic(fmt.Sprintf("unexpected constraint expression %T", x))
    }
    
    // Eval is like
    //
    //	x.Eval(func(tag string) bool { return matchTag(tag, tags) })
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. tools/packaging/packaging.mk

    ISTIO_FILES:=
    $(foreach DEP,$(ISTIO_DEB_DEPS),\
            $(eval ${TARGET_OUT_LINUX}/release/istio.deb: $(TARGET_OUT_LINUX)/$(DEP)) \
            $(eval ISTIO_FILES+=$(TARGET_OUT_LINUX)/$(DEP)=$(ISTIO_DEB_BIN)/$(DEP)) )
    
    SIDECAR_DEB_DEPS:=envoy pilot-agent
    SIDECAR_FILES:=
    $(foreach DEP,$(SIDECAR_DEB_DEPS),\
            $(eval ${TARGET_OUT_LINUX}/release/istio-sidecar.deb: $(TARGET_OUT_LINUX)/$(DEP)) \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

    class DslTestFixture(private val testDirectory: File) {
    
        val kotlinDslEvalBaseCacheDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-cache").apply {
                mkdirs()
            }
        }
    
        val kotlinDslEvalBaseTempDir: File by lazy {
            testDirectory.resolve("kotlin-dsl-eval-temp").apply {
                mkdirs()
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	*out1 = x2
    }
    
    // p224Mul multiplies two field elements in the Montgomery domain.
    //
    // Preconditions:
    //
    //	0 ≤ eval arg1 < m
    //	0 ≤ eval arg2 < m
    //
    // Postconditions:
    //
    //	eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m
    //	0 ≤ eval out1 < m
    func p224Mul(out1 *p224MontgomeryDomainFieldElement, arg1 *p224MontgomeryDomainFieldElement, arg2 *p224MontgomeryDomainFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluator.kt

                            CloseTargetScope,
                            ApplyBasePlugins,
                            Eval(program.source)
                        )
                    }
                }
    
                else -> {
                    Static(
                        defaultStageTransition(),
                        Eval(program.source)
                    )
                }
            }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. test/chan/powser1.go

    	return add(u, neg(v))
    }
    
    func inv(u rat) rat { // invert a rat
    	if u.num == 0 {
    		panic("zero divide in inv")
    	}
    	return i2tor(u.den, u.num)
    }
    
    // print eval in floating point of PS at x=c to n terms
    func evaln(c rat, U PS, n int) {
    	xn := float64(1)
    	x := float64(c.num) / float64(c.den)
    	val := float64(0)
    	for i := 0; i < n; i++ {
    		u := get(U)
    		if end(u) != 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

        }
    
        @Test
        fun `Static(Eval(buildscript)) reports script exception back to host`() {
    
            val fragment = fragment(
                "buildscript",
                "throw IllegalStateException(\"BOOM!\")"
            )
    
            val programHost = mock<ExecutableProgram.Host>()
            val scriptHost = scriptHostWith(mock<Settings>())
            withExecutableProgramFor(Static(Eval(fragment.source))) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/cel/mapper.go

    	return m.eval(ctx, map[string]interface{}{claimsVarName: claims.Object})
    }
    
    // EvalUser evaluates the given user expressions and returns a list of EvaluationResult.
    func (m *mapper) EvalUser(ctx context.Context, userInfo *unstructured.Unstructured) ([]EvaluationResult, error) {
    	return m.eval(ctx, map[string]interface{}{userVarName: userInfo.Object})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 20:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar_fiat.go

    	*out1 = x2
    }
    
    // fiatScalarMul multiplies two field elements in the Montgomery domain.
    //
    // Preconditions:
    //
    //	0 ≤ eval arg1 < m
    //	0 ≤ eval arg2 < m
    //
    // Postconditions:
    //
    //	eval (from_montgomery out1) mod m = (eval (from_montgomery arg1) * eval (from_montgomery arg2)) mod m
    //	0 ≤ eval out1 < m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
Back to top