Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 322 for Assignment (0.21 sec)

  1. cmd/kubeadm/app/util/config/initconfiguration.go

    	}
    
    	internalcfg := &kubeadmapi.InitConfiguration{}
    
    	// Takes passed flags into account; the defaulting is executed once again enforcing assignment of
    	// static default values to cfg only for values not provided with flags
    	kubeadmscheme.Scheme.Default(versionedInitCfg)
    	if err := kubeadmscheme.Scheme.Convert(versionedInitCfg, internalcfg, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisScriptSourceModuleResolveCandidatesTestGenerated.java

        @TestDataPath("$PROJECT_ROOT")
        public class Assignment {
          @Test
          public void testAllFilesPresentInAssignment() {
            KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/resolver/singleByPsi/operators/assignment"), Pattern.compile("^(.+)\\.kts$"), null, true);
          }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/runtime/map_fast64.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapassign_fast64
    func mapassign_fast64(t *maptype, h *hmap, key uint64) unsafe.Pointer {
    	if h == nil {
    		panic(plainError("assignment to entry in nil map"))
    	}
    	if raceenabled {
    		callerpc := getcallerpc()
    		racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast64))
    	}
    	if h.flags&hashWriting != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/runtime/map_fast32.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapassign_fast32
    func mapassign_fast32(t *maptype, h *hmap, key uint32) unsafe.Pointer {
    	if h == nil {
    		panic(plainError("assignment to entry in nil map"))
    	}
    	if raceenabled {
    		callerpc := getcallerpc()
    		racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_fast32))
    	}
    	if h.flags&hashWriting != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

    This element was created by Project.<init>.tasks() and can be mutated as the following types:
      - org.gradle.model.ModelMap<org.gradle.api.Task>
      - org.gradle.api.tasks.TaskContainer (or assignment compatible type thereof)""")
        }
    
        def "reports failure to bind subject or input due to null reference"() {
            given:
            buildScript """
    @Managed interface Person extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/builtins0.go

    	assert(_5 == 2)
    	f32 = _5
    	f64 = _5
    	const _6 = imag(0i)
    	assert(_6 == 0)
    	f32 = imag(c64)
    	f64 = imag(c128)
    	f32 = imag /* ERRORx `cannot use .* in assignment` */ (c128)
    	f64 = imag /* ERRORx `cannot use .* in assignment` */ (c64)
    	imag /* ERROR "not used" */ (c64)
    	_, _ = f32, f64
    
    	// complex type may not be predeclared
    	type C64 complex64
    	type C128 complex128
    	var x64 C64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

        }
    
        /**
         * Tests whether a {@code from} type is assignable to {@code to} type
         *
         * @param to   a 'to' type that should be checked for possible assignment
         * @param from a 'from' type that should be checked for possible assignment
         * @return whether an object of type {@code from} is assignable to an object of type {@code to}
         */
        public static boolean isAssignable(Type to, Type from) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/range_allocator.go

    			return fmt.Errorf("failed to allocate cidr from cluster cidr at idx:%v: %v", idx, err)
    		}
    		allocatedCIDRs[idx] = podCIDR
    	}
    
    	//queue the assignment
    	logger.V(4).Info("Putting node with CIDR into the work queue", "node", klog.KObj(node), "CIDRs", allocatedCIDRs)
    	return r.updateCIDRsAllocation(ctx, node.Name, allocatedCIDRs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            when:
            executer.withJdkWarningChecksEnabled()
    
            then:
            succeeds "test"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/25732")
        def "can set tags with Groovy = assignment"() {
            given:
            buildFile()
            goodPlugin()
            buildFile << """
                gradlePlugin {
                    plugins {
                        testPlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                )
    
                assertThat(
                    output,
                    not(containsString(samConversionForKotlinFunctions))
                )
            }
        }
    
        @Test
        fun `kotlin assignment compiler plugin is applied to production code by default`() {
            withKotlinDslPlugin()
            withFile(
                "src/main/kotlin/code.kt",
                """
    
                import org.gradle.api.Plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top