Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for BECOME (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    However, some cases went undetected or did not trigger build failures.
    In Gradle 9.0, all changes to a configuration after it has been observed will become an error.
    After a configuration of any type has been observed, it should be considered immutable.
    This validation covers the following properties of a configuration:
    
    * Resolution Strategy
    * Dependencies
    * Constraints
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        ce.setSourcePosition(be);
                        return ce;
                    } else {
                        // may be we have C[k1:v1, k2:v2] -> should become (C)([k1:v1, k2:v2])
                        boolean map = true;
                        for (Expression expression : list.getExpressions()) {
                            if (!(expression instanceof MapEntryExpression)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    // addIdleMarkWorker attempts to add a new idle mark worker.
    //
    // If this returns true, the caller must become an idle mark worker unless
    // there's no background mark worker goroutines in the pool. This case is
    // harmless because there are already background mark workers running.
    // If this returns false, the caller must NOT become an idle mark worker.
    //
    // nosplit because it may be called without a P.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	// requirements, that may change an import from unambiguous (due to lazy
    	// module loading) to ambiguous (because lazy module loading no longer
    	// disambiguates it). For any package that has become ambiguous, we try
    	// to fix it by promoting its module to an explicit root.
    	// (See https://go.dev/issue/60313.)
    	q := par.NewQueue(runtime.GOMAXPROCS(0))
    	for {
    		var disambiguateRoot sync.Map
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    		p = s.Prog(obj.ANOP)
    		pbover.To.SetTarget(p)
    
    	case ssa.OpPPC64CLRLSLWI:
    		r := v.Reg()
    		r1 := v.Args[0].Reg()
    		shifts := v.AuxInt
    		p := s.Prog(v.Op.Asm())
    		// clrlslwi ra,rs,mb,sh will become rlwinm ra,rs,sh,mb-sh,31-sh as described in ISA
    		p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: ssa.GetPPC64Shiftmb(shifts)}
    		p.AddRestSourceConst(ssa.GetPPC64Shiftsh(shifts))
    		p.Reg = r1
    		p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Starting with Gradle 7.6, non-strict accessors generation for Kotlin DSL precompiled script plugins has been deprecated.
    This will change in Gradle 8.0.
    Strict accessor generation will become the default.
    To opt in to the strict behavior, set the 'org.gradle.kotlin.dsl.precompiled.accessors.strict' system property to `true`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            action.transform(12) >> "[12]"
    
            expect:
            registry.realize("bar") == "[12]"
        }
    
        def "inputs for creation are bound as inputs become known"() {
            def action = Mock(Transformer)
    
            given:
            registry.register("bar") { it.unmanaged String, Integer, action }
            registry.registerInstance("foo", 12.toInteger())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    //              the nodes in the graph (except for the automatic skipping, see
    //              below).
    //  opers - Array of operations to become the body of the function or null.
    //          - If no array is given (`num_opers` = -1), all the
    //          operations in `fn_body` will become part of the function
    //          except operations referenced in `inputs`. These operations
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        /**
         * Instead of copying a configuration's roles outright, we allow copied configurations
         * to assume any role. However, any roles which were previously disabled will become
         * deprecated in the copied configuration. In 9.0, we will update this to copy
         * roles and deprecations without modification. Or, better yet, we will remove support
         * for copying configurations altogether.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

       already provided as an input argument or is read. The type of the input
       argument will become the shape of the value represented by the resource.
    
     . The function will have an output for each resource that is written. The
       type of the output will become the shape of the resource.
    
    The information of variable identification and input-output alising is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top