Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for Transformed (0.23 sec)

  1. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * Unsatisfiable Request` response will be returned.
         */
        fun onlyIfCached() = commonOnlyIfCached()
    
        /** Don't accept a transformed response. */
        fun noTransform() = commonNoTransform()
    
        fun immutable() = commonImmutable()
    
        /**
         * Sets the maximum age of a cached response. If the cache response's age exceeds [maxAge], it
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

            // Keep track of transformed artifacts as a given artifact may appear in multiple variants and configurations
            Map<LocalComponentArtifactMetadata, LocalComponentArtifactMetadata> transformedArtifacts = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                }
                            }
                        }
                    }
                }
            }
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports transformed display names with DisplayNameGeneration"() {
            file("src/test/java/org/example/ComplexTests.java") << """package org.example;
    
    import org.junit.jupiter.api.*;
    import org.junit.jupiter.params.ParameterizedTest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    struct TrivialTransformInfo {
      // Can the op be transformed trivially?
      bool can_transform = false;
    
      // List of callee names (one for each region).
      llvm::SmallVector<StringRef, 2> callee_names;
    
      // Analyzes the given calls (from regions attached to the same parent op) to
      // check if the parent op be transformed to functional form trivially (i.e.,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Tables.java

        // TODO(jlevy): Wrap factory to validate that the supplied maps are empty?
        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
       * <p>Changes in the underlying table are reflected in this view. Conversely, this view supports
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

        public TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def failure = new RuntimeException("main")
        def transformedException = new RuntimeException("transformed")
    
        def setup() {
            _ * exceptionAnalyser.transform(failure) >> transformedException
            def taskGraph = Stub(TaskExecutionGraphInternal)
            _ * gradleMock.taskGraph >> taskGraph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    	treeIndexes := make([]uint8, numSelectors)
    
    	// The tree indexes are move-to-front transformed and stored as unary
    	// numbers.
    	mtfTreeDecoder := newMTFDecoderWithRange(numHuffmanTrees)
    	for i := range treeIndexes {
    		c := 0
    		for {
    			inc := br.ReadBits(1)
    			if inc == 0 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    //
                    // This may also happen when a transform takes upstream dependencies and the dependencies are transformed using a different transform
                    // In this case, the main thread that schedules the work should isolate the transform parameters prior to scheduling the work. However, the dependencies may
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. 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)
Back to top