Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,327 for Example (0.2 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. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitOptionsIntegrationTest.groovy

            sourcePath.file("com/example/Exclude.java") << """
    package com.example;
    
    public interface Exclude {
    }
    """
            sourcePath.file("com/example/IncludedTest.java") << """
    package com.example;
    import org.junit.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            withReportProblemTask """
                problems.forNamespace('org.example.plugin').reporting {
                    it.id('type', 'label')
                    .documentedAt("https://example.org/doc")
                }
            """
    
            when:
            run('reportProblem')
    
            then:
            receivedProblem.definition.documentationLink.url == 'https://example.org/doc'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect.yaml

              - kind: Secret
                group: ""
                name: example-com-cert
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-1
      namespace: gateway-api-example-ns1
    spec:
      parentRefs:
        - name: my-filter-gateway
          sectionName: http
      hostnames:
        - my-filter.example.com
      rules:
        - filters:
            - type: RequestRedirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-service
      namespace: istio-system
    spec:
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.example"
        port: 80
        protocol: HTTP
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            '''
            file("src/main/java/example/module-info.java") << '''
            module example {
                exports io.example;
                requires another;
            }
            '''
            file("src/main/java/example/io/example/Example.java") << '''
                package io.example;
    
                import io.another.BaseExample;
    
                public class Example extends BaseExample {}
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    ! go install -cake=delicious -modcacherw example.com/printversion@v0.1.0
    stderr '^flag provided but not defined: -cake$'
    	# Because the -modcacherw flag was set, we should be able to modify the contents
    	# of a directory within the module cache.
    cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    go clean -modcache
    
    
    ! go install -unknownflag -tags -modcacherw example.com/printversion@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top