Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 413 for assignments (0.2 sec)

  1. src/go/types/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], false},
    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/values.yaml

            memory: 128Mi
        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
    
      # Node labels for pod assignment
      nodeSelector: {}
    
      # Tolerations for pod assignment
      tolerations: []
    
      # Affinity for pod assignment
      affinity: {}
    
      # Additional labels and annotations to apply on the pod level for monitoring and logging configuration.
      podLabels: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

            val expected = """
                    Assignment [indexes: 0..5, line/column: 1/1..1/6, file: test] (
                        lhs = PropertyAccess [indexes: 0..1, line/column: 1/1..1/2, file: test] (
                            name = a
                        )
                        rhs = IntLiteral [indexes: 4..5, line/column: 1/5..1/6, file: test] (1)
                    )
                    Assignment [indexes: 6..16, line/column: 2/1..2/11, file: test] (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslCompilerPlugins.kt

    import org.gradle.internal.logging.slf4j.ContextAwareTaskLogger
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.provider.KotlinDslPluginSupport
    import org.jetbrains.kotlin.assignment.plugin.gradle.AssignmentExtension
    import org.jetbrains.kotlin.assignment.plugin.gradle.AssignmentSubplugin
    import org.jetbrains.kotlin.gradle.dsl.JvmTarget
    import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 18:03:28 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/assignment/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::assignment[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(17)
        }
    }
    
    abstract class WriteJavaVersionTask : DefaultTask() {
        @get:Input
        abstract val javaVersion: Property<String>
        @get:OutputFile
        abstract val output: RegularFileProperty
    
        @TaskAction
        fun execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 740 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/defaultCodeResolver.kt

            propertyAccessResolver.doResolvePropertyAccessToAssignable(analysisContext, propertyAccess)
    
        override fun doResolveAssignment(context: AnalysisContext, assignment: Assignment): AssignmentRecord? =
            statementResolver.doResolveAssignment(context, assignment)
    
        override fun doResolveLocalValue(context: AnalysisContext, localValue: LocalValue) =
            statementResolver.doResolveLocalValue(context, localValue)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/internal/types/testdata/spec/range.go

    	for i /* ERROR "cannot use i (value of type MyInt) as int value in assignment" */, s /* ERROR "cannot use s (value of type MyString) as string value in assignment" */ = range f8 {
    		_, _ = mi, ms
    	}
    	for mi, ms := range f8 {
    		i, s = mi /* ERROR "cannot use mi (variable of type MyInt) as int value in assignment" */, ms /* ERROR "cannot use ms (variable of type MyString) as string value in assignment" */
    	}
    	for mi, ms = range f8 {
    		_, _ = mi, ms
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    				}
    				p.mangleName(name)
    				f.Name[fpName] = name
    			}
    			r.Name = name
    			// Rewrite into call to _Cgo_ptr to prevent assignments. The _Cgo_ptr
    			// function is defined in out.go and simply returns its argument. See
    			// issue 7757.
    			expr = &ast.CallExpr{
    				Fun:  &ast.Ident{NamePos: (*r.Expr).Pos(), Name: "_Cgo_ptr"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeDependentAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionTypeProvider/FirIdeNormalAnalysisSourceModuleHLExpressionTypeTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class Assignment {
        @Test
        public void testAllFilesPresentInAssignment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/expressionTypeProvider/expressionType/assignment"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top