Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for substitutions (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

                fileChanged("libs/build.gradle")
                projectConfigured(":plugins")
                projectsConfigured(":libs:a", ":libs:b") // TODO - should not be configured, but this currently happens to calculate the dependency substitutions
                modelsCreated(":libs")
                modelsReused(":", ":plugins", ":libs:a", ":libs:b")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cse.go

    				}
    				pNum++
    				partition = append(partition, f)
    			}
    			changed = true
    		}
    
    		if !changed {
    			break
    		}
    	}
    
    	sdom := f.Sdom()
    
    	// Compute substitutions we would like to do. We substitute v for w
    	// if v and w are in the same equivalence class and v dominates w.
    	rewrite := f.Cache.allocValueSlice(f.NumValues())
    	defer f.Cache.freeValueSlice(rewrite)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/generate/generate_test.go

    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    }
    
    // Command-related tests for TestGenerateCommandShortHand2
    // -- Note line numbers included to check substitutions from "build-in" variable - $GOLINE
    var splitTestsLines = []splitTestWithLine{
    	{"-command TEST1 $GOLINE", []string{"-command", "TEST1", "22"}, 22},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

      while True:
        func_match = re.search(compiled_regex, module)
        if func_match is None:
          break
    
        try:
          value_list = ast.literal_eval(func_match.group(1))
          # Escapes template $-based substitutions for attributes containing $.
          # $$ is replaced with a single $.
          func_template = string.Template(
              func_match.group(2).replace('tfdtype$DT_', 'tfdtype$$DT_'))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. src/os/path_windows_test.go

    	// (256) and thus requires fixLongPath to be correctly interpreted in I/O syscalls.
    	veryLong := "l" + strings.Repeat("o", 500) + "ng"
    	for _, test := range []struct{ in, want string }{
    		// Test cases use word substitutions:
    		//   * "long" is replaced with a very long pathname
    		//   * "c:" or "C:" are replaced with the drive of the current directory (preserving case)
    		//   * "cwd" is replaced with the current directory
    
    		// Drive Absolute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/substitutorMarkers.kt

    /**
     * A [KaSubstitutor] which substitution logic can be represented as a [Map] from a [KaTypeParameterSymbol] to corresponding [KaType]
     * This is an implementation details and Analysis API clients should not depend on the fact if some [KaSubstitutor] is [KaMapBackedSubstitutor] or not.
     */
    @KaAnalysisApiInternals
    interface KaMapBackedSubstitutor : KaSubstitutor {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorProvider.kt

            val substitutors = inheritancePath.map { (type, symbol) ->
                type.substitutorForSuperType(rootModuleSession, symbol)
            }
            return when (substitutors.size) {
                0 -> KaSubstitutor.Empty(token)
                else -> {
                    val chained = substitutors.reduce { left, right -> left.chain(right) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. test/intrinsic.dir/main.go

    		panic("100 errors is plenty is enough")
    	}
    }
    
    func test(i int, x uint64) {
    	t := T.TrailingZeros64(x) // ERROR "intrinsic substitution for TrailingZeros64"
    	if i != t {
    		logf("TrailingZeros64(0x%x) expected %d but got %d\n", x, i, t)
    	}
    	x = -x
    	t = T.TrailingZeros64(x) // ERROR "intrinsic substitution for TrailingZeros64"
    	if i != t {
    		logf("TrailingZeros64(0x%x) expected %d but got %d\n", x, i, t)
    	}
    
    	if i <= 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 18:06:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

         * }
         * </pre>
         */
        Substitution substitute(ComponentSelector substitutedDependency);
    
        /**
         * Provides a DSL-friendly mechanism for specifying the target of a substitution.
         */
        interface Substitution {
            /**
             * Specify a reason for the substitution. This is optional
             *
             * @param reason the reason for the selection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. test/intrinsic_atomic.go

    	_ = atomic.LoadUint32(&x)             // ERROR "intrinsic substitution for LoadUint32"
    	atomic.StoreUint32(&x, 1)             // ERROR "intrinsic substitution for StoreUint32"
    	atomic.AddUint32(&x, 1)               // ERROR "intrinsic substitution for AddUint32"
    	atomic.SwapUint32(&x, 1)              // ERROR "intrinsic substitution for SwapUint32"
    	atomic.CompareAndSwapUint32(&x, 1, 2) // ERROR "intrinsic substitution for CompareAndSwapUint32"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 839 bytes
    - Viewed (0)
Back to top