Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 123 for uris (0.04 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            createDir('buildSrc') {
                file('settings.gradle') << """
                    pluginManagement {
                        repositories {
                            maven { url '$mavenRepo.uri' }
                        }
                    }
                """
                file('build.gradle') << """
                    plugins { id 'listener-build-service-plugin' version '1.0' }
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       * IP address string joined by a "/".
       *
       * @param ip {@link InetAddress} to be converted to URI string literal
       * @return {@code String} containing URI-safe string literal
       */
      public static String toUriString(InetAddress ip) {
        if (ip instanceof Inet6Address) {
          return "[" + toAddrString(ip) + "]";
        }
        return toAddrString(ip);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/externalcontrolplane-valid-urls.yaml"},
    		analyzer:   &externalcontrolplane.ExternalControlPlaneAnalyzer{},
    		expected:   []message{
    			// no messages, this test case verifies no false positives
    		},
    	},
    	{
    		name:       "externalControlPlaneValidWebhooks",
    		inputFiles: []string{"testdata/externalcontrolplane-valid-urls-custom-ns.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/base.go

    			// so they don't need to be evaluated each time a CEL rule is compiled.
    			// This is a relatively expensive operation.
    			cel.EagerlyValidateDeclarations(true),
    			cel.DefaultUTCTimeZone(true),
    
    			library.URLs(),
    			library.Regex(),
    			library.Lists(),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 15:51:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                println 'from settings file'
            """
    
            file("build.gradle") << """
                apply plugin: 'java'
    
                repositories {
                    maven { url "${mavenHttpRepository.uri}" }
                }
    
                dependencies {
                    runtimeOnly 'org:foo:1.0'
                }
    
                jar.doLast {
                    println 'from jar task'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

            this.pluginArtifactName = pluginArtifactName
        }
    
        String pluginManagement() {
            """
                pluginManagement {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
                    }
                }
            """
        }
    
        String plugins() {
            """
                plugins { id "$id" version "$runtimeVersion" }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle now uses the `URI` class to parse and decode URLs, but with a fallback to the legacy behavior in the event of an error.
    
    Starting in Gradle 9.0, the fallback will be removed, and an error will be thrown instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	if rewrite == nil {
    		return nil
    	}
    	if rewrite.Uri != "" && rewrite.UriRegexRewrite != nil {
    		return errors.New("rewrite may only contain one of URI or UriRegexRewrite")
    	}
    	if rewrite.Uri == "" && rewrite.UriRegexRewrite == nil && rewrite.Authority == "" {
    		return errors.New("rewrite must specify at least one of URI, UriRegexRewrite, or authority. Only one of URI or UriRegexRewrite may be specified")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

                sourceControl {
                    vcsMappings {
                        withModule("org.test:buildB") {
                            from(GitVersionControlSpec) {
                                url = uri("some-repo")
                            }
                        }
                    }
                }
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pkg/kube/util.go

    			// Extensions: Not needed,
    		}
    
    		// Other relevant fields that are not acted on:
    		// * Cluster.Server (and ProxyURL). This allows the user to send requests to arbitrary URLs, enabling potential SSRF attacks.
    		//   However, we don't actually know what valid URLs are, so we cannot reasonably constrain this. Instead,
    		//   we try to limit what confidential information could be exfiltrated (from AuthInfo). Additionally, the user cannot control
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top