Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 478 for replaceable (0.17 sec)

  1. schema/naming.go

    	} else {
    		buf.WriteByte(value[len(value)-1])
    	}
    	ret := buf.String()
    	return ret
    }
    
    func (ns NamingStrategy) toSchemaName(name string) string {
    	result := strings.ReplaceAll(cases.Title(language.Und, cases.NoLower).String(strings.ReplaceAll(name, "_", " ")), " ", "")
    	for _, initialism := range commonInitialisms {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

                .replaceAll(/Calculating task graph as no cached configuration is available for tasks: ${task}.*\n/, '')
                .replaceAll(/Configuration cache entry stored.\n/, '')
    
            when:
            configurationCacheRun(task, *options)
            def secondRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Reusing configuration cache.\n/, '')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

                return;
            }
    
            throw new RuntimeException(String.format("Can't parse S3 URI '%s'", uri));
        }
    
        private String getBucketName(String bucket) {
            return bucket.replaceAll("\\.s3\\.amazonaws\\.com", "").replaceAll("\\.s3-external-1\\.amazonaws\\.com", "");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

                null,
                null,
                input).call();
    
            fileManager.close();
        }
    
        String normalize(String input) {
            String out = input.replaceAll(">", ">")
            out = out.replaceAll("&lt;", "<")
            out
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/AbstractCompilerPluginTest.groovy

            def className = (body =~ /(?s).*?(?:class|interface) (\w+).*/)[0][1]
            assert className: "unable to find class name"
            String packageFolder = packageName.replaceAll("[.]", File.separator)
            File parent = Paths.get(sourceFolder.absolutePath, "src", "main", "java", packageFolder).toFile()
            File f = Paths.get(parent.absolutePath, "${className}.java").toFile()
            parent.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/MetadataDocinfoProcessor.java

                    String content = attr.getValue().toString();
                    outputHtml.append(String.format("<meta name=\"%s\" content=\"%s\">\n", name, content));
                } else if (attributeKey.startsWith(META_PROPERTY)) {
                    String name = attributeKey.substring(META_PROPERTY.length()).replaceAll("_", ":");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java

                }
            }
    
            return encoding;
        }
    
        protected String extractString(final String content) {
            String input = content.replaceAll("[\\r\\n]", " ");
            if (ignoreCommentTag) {
                input = input.replaceAll("<!--[^>]+-->", "");
            } else {
                input = input.replace("<!--", "").replace("-->", "");
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

            //Then, we replace every linebreak with slash+linebreak. Slash is needed according to javadoc options file format
            write(value.replaceAll("\\\\", "\\\\\\\\")
                    //below does not help on windows environments. I was unable to get plain javadoc utility to work successfully with multiline options _in_ the options file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/fix/egltype_test.go

    // typedef void *$EGLTYPE;
    import "C"
    
    var x = map[int]C.$EGLTYPE{0: 0}
    `,
    		},
    	}
    	for i := range eglTests {
    		t := &eglTests[i]
    		t.In = strings.ReplaceAll(t.In, "$EGLTYPE", tname)
    		t.Out = strings.ReplaceAll(t.Out, "$EGLTYPE", tname)
    	}
    	return eglTests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/mime/multipart/formdata_test.go

    package multipart
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"math"
    	"net/textproto"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestReadForm(t *testing.T) {
    	b := strings.NewReader(strings.ReplaceAll(message, "\n", "\r\n"))
    	r := NewReader(b, boundary)
    	f, err := r.ReadForm(25)
    	if err != nil {
    		t.Fatal("ReadForm:", err)
    	}
    	defer f.RemoveAll()
    	if g, e := f.Value["texta"][0], textaValue; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top