Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 580 for evaluations (0.17 sec)

  1. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/InterpretationSequenceStepRunners.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.runner
    
    import org.gradle.declarative.dsl.evaluation.InterpretationSequenceStep
    
    
    interface InterpretationSequenceStepRunner<in C : StepContext, out R : StepResult> {
        fun runInterpretationSequenceStep(
            scriptIdentifier: String,
            scriptSource: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. test/fixedbugs/bug443.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Was failing to compile with 'invalid receiver' due to
    // incomplete type definition evaluation.  Issue 3709.
    
    package p
    
    type T1 struct { F *T2 }
    type T2 T1
    
    type T3 T2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 385 bytes
    - Viewed (0)
  3. test/fixedbugs/issue43908.go

    // run
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify exact constant evaluation independent of
    // (mathematically equivalent) expression form.
    
    package main
    
    import "fmt"
    
    const ulp1 = imag(1i + 2i / 3 - 5i / 3)
    const ulp2 = imag(1i + complex(0, 2) / 3 - 5i / 3)
    
    func main() {
    	if ulp1 != ulp2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 25 23:44:22 UTC 2021
    - 473 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/CodeAnalyzer.kt

    package org.gradle.internal.declarativedsl.analysis
    
    
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter
    import org.gradle.internal.declarativedsl.language.Assignment
    import org.gradle.internal.declarativedsl.language.DataStatement
    import org.gradle.internal.declarativedsl.language.Expr
    import org.gradle.internal.declarativedsl.language.LocalValue
    
    
    interface CodeAnalyzer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m5/ToolingApiModelCrossVersionSpec.groovy

            BuildException e = thrown()
            e.message.startsWith('Could not fetch model of type \'GradleProject\' using')
            e.cause.message.contains('A problem occurred evaluating root project')
    
            and:
            failure.assertHasDescription('A problem occurred evaluating root project')
            assertHasConfigureFailedLogging()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. test/func7.go

    // run
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test evaluation order in if condition.
    
    package main
    
    var calledf = false
    
    func f() int {
    	calledf = true
    	return 1
    }
    
    func g() int {
    	if !calledf {
    		panic("BUG: func7 - called g before f")
    	}
    	return 0
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 477 bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authorization/v1/generated.proto

      // encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.
      optional bool incomplete = 3;
    
      // EvaluationError can appear in combination with Rules. It indicates an error occurred during
      // rule evaluation, such as an authorizer that doesn't support rule evaluation, and that
      // ResourceRules and/or NonResourceRules may be incomplete.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.
      optional bool incomplete = 3;
    
      // EvaluationError can appear in combination with Rules. It indicates an error occurred during
      // rule evaluation, such as an authorizer that doesn't support rule evaluation, and that
      // ResourceRules and/or NonResourceRules may be incomplete.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"evaluationError":  "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/InterpretationSequence.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    interface InterpretationSequence : Serializable {
        val steps: Iterable<InterpretationSequenceStep>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 798 bytes
    - Viewed (0)
Back to top