Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for b0Bundle (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            library("myLib-ext", "org.gradle.test", "lib-ext").versionRef("myLib")
                            bundle("myBundle", ["myLib"])
                            bundle("myBundle-ext", ["myLib-ext"])
                        }
                    }
                }
            """
            def publishLib = { String artifactId, String version ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    			if diff := cmp.Diff(gotErrors, tc.wantErrors); diff != "" {
    				t.Fatalf("Unexpected error output from Validate; diff (-got +want)\n%s", diff)
    			}
    
    			// When there are no changes to the object,
    			// ValidateClusterTrustBundleUpdate should not report errors about
    			// the TrustBundle field.
    			tc.bundle.ObjectMeta.ResourceVersion = "1"
    			newBundle := tc.bundle.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. configure.py

      if is_windows() or is_cygwin():
        default_ndk_path = cygpath('%s/Android/Sdk/ndk-bundle' %
                                   environ_cp['APPDATA'])
      elif is_macos():
        default_ndk_path = '%s/library/Android/Sdk/ndk-bundle' % environ_cp['HOME']
      else:
        default_ndk_path = '%s/Android/Sdk/ndk-bundle' % environ_cp['HOME']
    
      def valid_ndk_path(path):
        return (os.path.exists(path) and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue validateGateway = 4;
    
      // validation webhook CA bundle
      string validationCABundle = 5;
    }
    
    message IstiodRemoteConfig {
      // URL to use for sidecar injector webhook.
      string injectionURL = 1;
      // Path to use for the sidecar injector webhook service.
      string injectionPath = 2;
      // injector ca bundle
      string injectionCABundle = 3;
    
    }
    
    message Values {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
    				"application/vnd.openxmlformats-officedocument.wordprocessingml.template",
    				"application/vnd.osa.netdeploy",
    				"application/vnd.osgi.bundle",
    				"application/vnd.osgi.dp",
    				"application/vnd.otps.ct-kip+xml",
    				"application/vnd.palm",
    				"application/vnd.paos.xml",
    				"application/vnd.pg.format",
    				"application/vnd.pg.osasli",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - You cannot use `Provider<String>` as a dependency declaration.
    - You cannot use a `Map` as a dependency declaration for Kotlin or Java.
    - You cannot use a bundle as a dependency declaration directly (`implementation(libs.bundles.testing)`).
    Use `implementation.bundle(libs.bundles.testing)` instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "type": "object",
          "properties": {
            "caBundle": {
              "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
              "type": "string",
              "format": "byte"
            },
            "service": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            where:
            type          | extension     | classifier
            'test-jar'    | 'jar'         | 'tests'
            'ejb'         | 'jar'         | null
            'ejb-client'  | 'jar'         | 'client'
            'bundle'      | 'jar'         | null
            'custom-type' | 'custom-type' | null
        }
    
        @Issue("GRADLE-3299")
        def "correctly resolve references to parent GAV properties"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	//
    	// If the webhook is running within the cluster, then you should use `service`.
    	//
    	// +optional
    	Service *ServiceReference
    
    	// `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
    	// If unspecified, system trust roots on the apiserver are used.
    	// +optional
    	CABundle []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // If the webhook is running within the cluster, then you should use `service`.
      //
      // +optional
      optional ServiceReference service = 1;
    
      // `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
      // If unspecified, system trust roots on the apiserver are used.
      // +optional
      optional bytes caBundle = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top