Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Transformed (0.17 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        }
    
        @ToBeImplemented
        @Issue('https://github.com/gradle/gradle/issues/29147')
        def "can connect transformed incoming elements of a configuration to task input ListProperty"() {
            withZipArtifactProducingSubprojects 'p1', 'p2'
            withIdentityTransform()
            buildFile '''
                apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        // Adjust the function arguments to match the types of the caller.
        // So e.g.
        //
        // func.func @f(%x : foo) {
        // }
        // ...
        // func.call @f(%x : bar)
        //
        // will be transformed to
        //
        // func.func @f(%x : bar) {
        //   ...
        // }
        // ...
        // func.call @f(%x : bar)
    
        CallInterfaceCallable callable = call.getCallableForCallee();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

        @Override
        public InputFingerprinter getInputFingerprinter() {
            return inputFingerprinter;
        }
    
        private static File getOutputDir(File workspace) {
            return new File(workspace, "transformed");
        }
    
        private static File getResultsFile(File workspace) {
            return new File(workspace, "results.bin");
        }
    
        @Override
        public ExecutionBehavior getExecutionBehavior() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. maven-core/pom.xml

                  <!-- internal field removed -->
                  <exclude>org.apache.maven.graph.DefaultGraphBuilder#projectBuilder</exclude>
                  <!-- MavenPluginValidator has been transformed into an interface -->
                  <exclude>org.apache.maven.plugin.MavenPluginValidator</exclude>
                  <!-- Remove plexus logger -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // separate pass.
      pass_manager.addPass(mlir::odml::CreateUnfoldSplatConstantPass());
    
      if (pass_config.enable_stablehlo_quantizer) {
        // When using StableHLO Quantizer, MHLO ops should be transformed back into
        // StableHLO because the quantizer takes StableHLO dialect as its input.
        pass_manager.addPass(mlir::mhlo::createHloLegalizeToStablehloPass());
      }
    }
    
    void AddPostQuantizationStableHloToTfPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    		// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    		case objabi.R_GOTPCREL:
    			if target.IsDynlinkingGo() && target.IsDarwin() && rs != 0 {
    				nExtReloc++
    				o = r.Add()
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            output.text == "16"
    
            when:
            input.text = "10"
            configurationCacheRun(":transformer")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "22"
    
            when:
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

        ) {
            final Transformer transformer = extractingTransformer != null ? extractingTransformer.getTransformer() : null;
            logger.info("Compiling {} using {}.", source.getDisplayName(), transformer != null ? transformer.getClass().getSimpleName() : "no transformer");
    
            final EmptyScriptDetector emptyScriptDetector = new EmptyScriptDetector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	originalTransformer := s.transformer.(*storagetesting.PrefixTransformer)
    	transformer := *originalTransformer
    	s.transformer = modifier(&transformer)
    	s.watcher.transformer = modifier(&transformer)
    	return func() {
    		s.transformer = originalTransformer
    		s.watcher.transformer = originalTransformer
    	}
    }
    
    func TestGuaranteedUpdate(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

        useSiteSession: FirSession,
        classId: ClassId,
        transformer: (index: Int, annotation: FirAnnotation) -> KaAnnotation?,
    ): List<KaAnnotation> = mapIndexedNotNull { index, annotation ->
        if (annotation.toAnnotationClassId(useSiteSession) != classId) {
            return@mapIndexedNotNull null
        }
    
        transformer(index, annotation)
    }
    
    private fun computeTargetAnnotationArguments(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top