Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 174 for Transformed (0.14 sec)

  1. cmd/object-lambda-handlers.go

    		}
    		if apiErr.HTTPStatusCode == http.StatusOK {
    			return nil
    		}
    		return apiErr
    	}
    	return nil
    }
    
    // GetObjectLamdbaHandler - GET Object with transformed data via lambda functions
    // ----------
    // This implementation of the GET operation applies lambda functions and returns the
    // response generated via the lambda functions. To use this API, you must have READ access
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    }
    
    // Get the alternative view of the func for the given device_inference_type.
    // It's possible the transformed func can still contain unsupported ops for the
    // given device_inference_type.
    func::FuncOp AlternativeSubgraphPass::GetAlternativeViewForSpec(
        func::FuncOp func, const InferenceDeviceType& current_device_inference_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        ```mlir
          %0 = "tf.ReadVariableOp"(%arg0)
          %1 = "tf.ReadVariableOp"(%arg1)
          %2 = "tf.TPUExecute"(%0, %1, %compile)
          %3 = "tf.AssignVariableOp"(%arg0, %2)
        ```
    
        will be transformed into
    
        ```mlir
          %2 = "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg1, %compile)
            { device_var_reads_indices = [0, 1],
              device_var_updates_indices = [0, -1] }
        ````
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        if (failed((isQuantizableWeight(op)))) {
          return failure();
        }
    
        // 2. Quantize the constant to the provided data type.
        // After quantization, the graph will be transformed
        // from:
        // const -> some op -> quantizable_op
        // to:
        // q_const -> dequant_op -> some op -> quantizable_op
        //
        // A dequant_op will propagate to further quantize the next ops in another
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Lists.java

        return cartesianProduct(Arrays.asList(lists));
      }
    
      /**
       * Returns a list that applies {@code function} to each element of {@code fromList}. The returned
       * list is a transformed view of {@code fromList}; changes to {@code fromList} will be reflected
       * in the returned list and vice versa.
       *
       * <p>Since functions are not reversible, the transform is one-way and new items cannot be stored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         *
         * @since 3.5
         */
        public void file(Action<? super XmlFileContentMerger> action) {
            action.execute(file);
        }
    
        /**
         * Source directories to be transformed into wb-resource elements.
         * <p>
         * For examples see docs for {@link EclipseWtp}
         * <p>
         * Only source dirs that exist will be added to the wtp component file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top