Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for transforming (0.42 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then:
            output.count('Transforming') == 3
            output.contains("result = [lib2-5.6.jar.txt, lib1-1.2.jar.txt]")
            output.contains("result = [lib2-5.6.jar.txt, lib1-1.3.jar.txt]")
            output.count('Transforming without dependencies lib2-5.6.jar to lib2-5.6.jar.txt') == 1
            output.count('Transforming without dependencies lib1-1.2.jar to lib1-1.2.jar.txt') == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @get:InputArtifact
        abstract val inputArtifact: Provider<FileSystemLocation>
    
        override fun transform(outputs: TransformOutputs) {
            val inputFile = inputArtifact.get().asFile
            println("Transforming ${inputFile.name}...")
            outputs.file("${inputFile.nameWithoutExtension}-summary.txt").run {
                writeText("${inputFile.name}: ${inputFile.length()}")
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        abstract Property<CountingService> getCounter()
                    }
    
                    @Override
                    void transform($TransformOutputs.name outputs) {
                        println "Transforming ${UUID.randomUUID()}"
                        parameters.counter.get().increment()
                    }
                }
    
                gradle.sharedServices.registerIfAbsent("counter", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Fix a race condition in kube-controller-manager and scheduler caused by a bug in transforming informer happening when objects were accessed during Resync operation by making the transforming function idempotent. ([#124352](https://github.com/kubernetes/kubernetes/pull/124352), [@wojtek-t](https://github.com/wojtek-t)) [SIG API Machinery and Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    while loop body has a control barrier (`%barrier`) at the end which forces
    a dependency and the two assign variable ops must wait for each other to
    complete before starting the next iteration. Transforming these control
    outputs to data outputs removes the dependency between the two assign
    variable ops, thus allowing them to run in parallel across iterations.
    
    Before:
    
    ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMap.java

                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
              // Inline the Comparator implementation rather than transforming with a Function
              // to save code size.
              Arrays.sort(
                  entryArray,
                  0,
                  size,
                  (e1, e2) -> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * mapping and Punycode encoding.
     *
     * In order to avoid confusion and discourage phishing attacks, [IDNA Mapping][idna] transforms
     * names to avoid confusing characters. This includes basic case folding: transforming shouting
     * `SQUARE.COM` into cool and casual `square.com`. It also handles more exotic characters. For
     * example, the Unicode trademark sign (™) could be confused for the letters "TM" in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

                keys[i] = key;
                values[i] = value;
              }
            } else {
              // Need to sort and check for nulls and dupes.
              // Inline the Comparator implementation rather than transforming with a Function
              // to save code size.
              Arrays.sort(
                  entryArray,
                  0,
                  size,
                  (e1, e2) -> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    
    	for _, testCase := range transformers {
    		transformedData, err := testCase.Transformer.TransformToStorage(ctx, originalText, dataCtx)
    		if err != nil {
    			t.Fatalf("%s: error while transforming data to storage: %s", testCase.Name, err)
    		}
    
    		for _, transformer := range transformers {
    			untransformedData, stale, err := transformer.Transformer.TransformFromStorage(ctx, transformedData, dataCtx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// deletionTimestamp, and deletionGracePeriodSeconds checks.
    	ShouldDeleteDuringUpdate func(ctx context.Context, key string, obj, existing runtime.Object) bool
    
    	// TableConvertor is an optional interface for transforming items or lists
    	// of items into tabular output. If unset, the default will be used.
    	TableConvertor rest.TableConvertor
    
    	// ResetFieldsStrategy provides the fields reset by the strategy that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top