Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,020 for Replacer (0.25 sec)

  1. internal/s3select/sql/record.go

    	// Clone the record and if possible use the destination provided.
    	Clone(dst Record) Record
    	Reset()
    
    	// Returns underlying representation
    	Raw() (SelectObjectFormat, interface{})
    
    	// Replaces the underlying data
    	Replace(k interface{}) error
    }
    
    // IterToValue converts a simdjson Iter to its underlying value.
    // Objects are returned as simdjson.Object
    // Arrays are returned as []interface{} with parsed values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    limitations under the License.
    */
    
    package resolver
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    // PopulateRefs recursively replaces Refs in the schema with the referred one.
    // schemaOf is the callback to find the corresponding schema by the ref.
    // This function will not mutate the original schema. If the schema needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_WHILEOUTLINEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This pass outlines the cond/body region of the TFL WhileOp into functions and
    // replaces the regions with calls to these outlined functions.
    class WhileOutlinePass : public impl::WhileOutlinePassBase<WhileOutlinePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(WhileOutlinePass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    // labels don't support `/`, we replace "." with "/" in the supplied label as a workaround.
    func GetLocalityLabel(label string) string {
    	if len(label) > 0 {
    		// if there are /'s present we don't need to replace
    		if strings.Contains(label, "/") {
    			return label
    		}
    		// replace "." with "/"
    		return strings.Replace(label, k8sSeparator, "/", -1)
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/xml/XmlEscapers.java

        // Unsafe characters are replaced with the Unicode replacement character.
        builder.setUnsafeReplacement("\uFFFD");
    
        /*
         * Except for \n, \t, and \r, all ASCII control characters are replaced with the Unicode
         * replacement character.
         *
         * Implementation note: An alternative to the following would be to make a map that simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/xml/XmlEscapers.java

        // Unsafe characters are replaced with the Unicode replacement character.
        builder.setUnsafeReplacement("\uFFFD");
    
        /*
         * Except for \n, \t, and \r, all ASCII control characters are replaced with the Unicode
         * replacement character.
         *
         * Implementation note: An alternative to the following would be to make a map that simply
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r33/BuildActionCompositeBuildCrossVersionSpec.groovy

     * there is a class-level lower bound for both versions.
     *
     * In addition, in version 6.6 the deprecated {@code DependencySubstitutions#with(ComponentSelector)} method
     * was removed, to be replaced by {@code #using(ComponentSelector)} so there are 2 versions of tests
     * present using either of those methods - pre and post Gradle 6.6.  And when the TAPI or Gradle versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << NO_COMMON_PREFIX.findAll { allowEmptyChildren || !it.childPaths.empty }
        }
    
        def "store parent #vfsSpec.searchedPath replaces child #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
            def newChildPath = searchedPath.asString
            def snapshot = Mock(MetadataSnapshot)
            def parent = mockChild()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/ReaderInputStream.java

      ReaderInputStream(Reader reader, Charset charset, int bufferSize) {
        this(
            reader,
            charset
                .newEncoder()
                .onMalformedInput(CodingErrorAction.REPLACE)
                .onUnmappableCharacter(CodingErrorAction.REPLACE),
            bufferSize);
      }
    
      /**
       * Creates a new input stream that will encode the characters from {@code reader} into bytes using
       * the given character set encoder.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ReaderInputStream.java

      ReaderInputStream(Reader reader, Charset charset, int bufferSize) {
        this(
            reader,
            charset
                .newEncoder()
                .onMalformedInput(CodingErrorAction.REPLACE)
                .onUnmappableCharacter(CodingErrorAction.REPLACE),
            bufferSize);
      }
    
      /**
       * Creates a new input stream that will encode the characters from {@code reader} into bytes using
       * the given character set encoder.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top