Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 887 for evacuate (0.14 sec)

  1. src/text/template/doc.go

    	- A parenthesized instance of one the above, for grouping. The result
    	  may be accessed by a field or map key invocation.
    		print (.F1 arg1) (.F2 arg2)
    		(.StructValuedMethod "arg").Field
    
    Arguments may evaluate to any type; if they are pointers the implementation
    automatically indirects to the base type when required.
    If an evaluation yields a function value, such as a function-valued
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compileTimeConstantProvider/FirIdeDependentAnalysisScriptSourceModuleCompileTimeConstantEvaluatorTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode")
      @TestDataPath("$PROJECT_ROOT")
      public class IncompleteCode {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// e.g. "must be a URL with the host matching spec.host"
    	Message string
    	// MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
    	// Since messageExpression is used as a failure message, it must evaluate to a string.
    	// If both message and messageExpression are present on a rule, then messageExpression will be used if validation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

            project.evaluate()
    
            then:
            project.xctest.testedComponent.orNull == project.application
        }
    
        @Requires(UnitTestPreconditions.MacOs)
        def "registers a test bundle for the test suite on macOS"() {
            when:
            project.pluginManager.apply(XCTestConventionPlugin)
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

        }
    
        def "registers a component for the library with default linkage"() {
            when:
            project.pluginManager.apply(CppLibraryPlugin)
            project.evaluate()
    
            then:
            project.components.main == project.library
            project.library.binaries.get().name == ['mainDebug', 'mainRelease']
            project.components.containsAll(project.library.binaries.get())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/CurrentBuildOperationRefTest.groovy

            def thread = Thread.start {
                // expect:
                conditions.evaluate { ref.get() == null }
    
                // when:
                ref.set(op)
    
                // then:
                conditions.evaluate { ref.get().is(op) }
    
                // when:
                ref.clear()
    
                // then:
                conditions.evaluate { ref.get() == null }
            }
    
            then:
            conditions.await()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    var _ ref.Val = (*MapValue)(nil)
    var _ traits.Mapper = (*MapValue)(nil)
    
    // MapValue is a map that lazily evaluate its value when a field is first accessed.
    // The map value is not designed to be thread-safe.
    type MapValue struct {
    	typeValue *types.Type
    
    	// values are previously evaluated values obtained from callbacks
    	values map[string]ref.Val
    	// callbacks are a map of field name to the function that returns the field Val
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/compileTimeConstantProvider/FirIdeNormalAnalysisScriptSourceModuleCompileTimeConstantEvaluatorTestGenerated.java

        KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate"), Pattern.compile("^(.+)\\.kts$"), null, true);
      }
    
      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode")
      @TestDataPath("$PROJECT_ROOT")
      public class IncompleteCode {
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/groovy/build.gradle

    // tag::after-evaluate[]
    gradle.beforeProject { project ->
        project.ext.set("hasTests", false)
    }
    
    gradle.afterProject { project ->
        if (project.ext.has("hasTests") && project.ext.get("hasTests") as Boolean) {
            def projectString = project.toString()
            println "Adding test task to $projectString"
            project.task('test') {
                doLast {
                    println "Running tests for $projectString"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  10. src/text/template/exec.go

    			if _, ok := etyp.FieldByName(fieldName); !ok {
    				// If there's no such field, say "can't evaluate"
    				// instead of "nil pointer evaluating".
    				break
    			}
    		}
    		if isNil {
    			s.errorf("nil pointer evaluating %s.%s", typ, fieldName)
    		}
    	}
    	s.errorf("can't evaluate field %s in type %s", fieldName, typ)
    	panic("not reached")
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top