Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for uris (0.05 sec)

  1. staging/src/k8s.io/api/authorization/v1/types.go

    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full,
    	// final step in the path.  "*" means all.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * How to handle insecure (http) URLs used for Maven Repositories.
         *
         * This property can be set via command-line option '--insecure-protocol'.  The default value is 'warn'.
         *
         * @since 7.3
         */
        @Input
        @Option(option = "insecure-protocol", description = "How to handle insecure URLs used for Maven Repositories.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    				{version.MajorMinor(1, 23), StoredExpressions},
    			},
    			validExpressions: []string{
    				"[1, 2, 3].indexOf(2) == 1",      // lists
    				"'abc'.contains('bc')",           //strings
    				"isURL('http://example.com')",    // urls
    				"'a 1 b 2'.find('[0-9]') == '1'", // regex
    			},
    		},
    		{
    			name: "authz disabled",
    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 26), NewExpressions},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            mavenRepo.module('org.gradle.test', 'compileOnly', '1.0').publish()
    
            and:
            buildFile << """
    repositories {
        maven { url '$mavenRepo.uri' }
    }
    
    dependencies {
        implementation 'org.gradle.test:compile:1.0'
        compileOnly 'org.gradle.test:compileOnly:1.0'
    }
    """
    
            when:
            run "installDist"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onAccess("file")
                return delegate.file(path, validation)
            }
    
            override fun uri(path: Any): URI {
                onAccess("uri")
                return delegate.uri(path)
            }
    
            override fun relativePath(path: Any): String {
                onAccess("relativePath")
                return delegate.relativePath(path)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types.go

    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    	// NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
    	// Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top