Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 783 for example1 (0.14 sec)

  1. cmd/import-boss/README.md

    suffice.
    
    Example:
    
    ```yaml
    inverseRules:
      - selectorRegexp: example[.]com
        allowedPrefixes:
          - example.com/this-same-repo
          - example.com/close-friend/legacy
        forbiddenPrefixes:
          - example.com/other-project
      - selectorRegexp: example[.]com
        transitive: true
        forbiddenPrefixes:
          - example.com/other-team
    ```
    
    ## How do I run import-boss?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    	slices.Sort(res["outbound|80||example.com"])
    	assert.Equal(t, res, map[string][]string{
    		"outbound|8080||example.com": {"example.com:8080"},
    		// Kind of weird to have multiple here, but it is what it is...
    		// If we had targetPort, etc, set here this would be required
    		"outbound|80||example.com": {
    			"endpoint-port-override.example.com:2345",
    			"endpoint.example.com:999",
    			"example.com:1234",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            url = "http://example.com/";
            exp = "http://example.com/";
            assertEquals(exp, transformer.decodeUrlAsName(url, false));
    
            url = "http://example.com/index.html";
            exp = "http://example.com/index.html";
            assertEquals(exp, transformer.decodeUrlAsName(url, false));
    
            url = "http://example.com/" + encodeUrl("ใƒ†ใ‚นใƒˆ ") + ".html";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/SimpleAnalysisDemo.kt

    package org.gradle.internal.declarativedsl.demo.demoSimple
    
    import com.example.Abc
    import com.example.C
    import com.example.D
    import com.example.newD
    import org.gradle.internal.declarativedsl.analysis.DefaultFqName
    import org.gradle.internal.declarativedsl.demo.printResolutionResults
    import org.gradle.internal.declarativedsl.demo.resolve
    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    
    
    val schema = schemaFromTypes(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/serialize/ExceptionPlaceholderIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

    package com.example;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    
    /**
     * Adds an "example" extension to project and wires dependencies from the extension to a Configuration.
     */
    public class ExamplePlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ExampleExtension example = project.getExtensions().create("example", ExampleExtension.class);
    // tag::wire-dependencies[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
  7. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

            }
    
            file("src/test/java/org/example/PublishedApiTestPluginTest.java") << pluginTestJava()
        }
    
        def "can compile Java code against public API"() {
            buildFile << configureApiWithPlugin('id("java-library")')
    
            file("src/main/java/org/example/PublishedApiTestPlugin.java") << """
                package org.example;
    
                import org.gradle.api.Plugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals("2005-01-01", sitemaps[0].getLastmod());
            assertEquals("http://www.example.com/", sitemaps[0].getLoc());
            assertEquals("monthly", ((SitemapUrl) sitemaps[0]).getChangefreq());
            assertEquals("0.8", ((SitemapUrl) sitemaps[0]).getPriority());
    
            assertNull(sitemaps[1].getLastmod());
            assertEquals("http://www.example.com/catalog?item=12&desc=vacation_hawaii", sitemaps[1].getLoc());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

            """
            file('src/test/java/example/MyTest.java').text = """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                }
            """
            file('src/test/java/example/SecondTest.java').text = """
                package example;
                public class SecondTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/integTest/groovy/org/gradle/internal/declarativedsl/ErrorHandlingOnReflectiveCallsSpec.groovy

                        create("restrictedPlugin") {
                            id = "com.example.restricted"
                            implementationClass = "com.example.restricted.RestrictedPlugin"
                        }
                        create("restrictedEcosystem") {
                            id = "com.example.restricted.ecosystem"
                            implementationClass = "com.example.restricted.SoftwareTypeRegistrationPlugin"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top