Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for b0Bundle (0.19 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                            String symbolicName = mainAttributes.getValue("Bundle-SymbolicName")
                            if ("com.google.guava".equals(symbolicName)) {
                                println "Guava version: " + mainAttributes.getValue("Bundle-Version")
                                break
                            }
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. fastapi/openapi/docs.py

                """
                The URL to use to load the Swagger UI JavaScript.
    
                It is normally set to a CDN URL.
                """
            ),
        ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
        swagger_css_url: Annotated[
            str,
            Doc(
                """
                The URL to use to load the Swagger UI CSS.
    
                It is normally set to a CDN URL.
                """
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

        ],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                .stream()
                .sorted()
                .forEach(alias -> {
                    List<String> bundled = expectArray("bundle", alias, bundlesTable, alias).toList().stream()
                        .map(String::valueOf)
                        .collect(toList());
                    versionCatalogBuilder.bundle(alias, bundled);
                });
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/BUILD

        driver = "@llvm-project//mlir:run_lit.sh",
        tags_override = {
            "test_error_message.lit.pbtxt": ["no_oss"],  # TODO(b/150957738): to be fixed on oss.
        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
        testonly = True,
        srcs = [
            "test_error_message.lit.pbtxt.config.pbtxt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	// based on the dynamic cert state.
    	baseTLSConfig *tls.Config
    
    	// clientCA provides the very latest content of the ca bundle
    	clientCA CAContentProvider
    	// servingCert provides the very latest content of the default serving certificate
    	servingCert CertKeyContentProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            script().src("https://code.jquery.com/jquery-3.3.1.min.js").end();
                            script().src("https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js").end();
                            script().src("js/performanceReport.js").end();
                            title().text(getPageTitle());
                        end();
                        body();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    		t.Fatalf("Error reading the root cert file: %v", err)
    	}
    
    	// Update the proxyConfig with certs
    	sc.UpdateConfigTrustBundle(rootCert)
    
    	// Ensure Callback gets invoked when updating proxyConfig trust bundle
    	u.Expect(map[string]int{security.RootCertReqResourceName: 1, security.WorkloadKeyCertResourceName: 1})
    	u.Reset()
    
    	concatCerts := func(certs ...string) []byte {
    		expectedRootBytes := []byte{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authenticator/config.go

    	BootstrapTokenAuthenticator authenticator.Token
    	// ClientCAContentProvider are the options for verifying incoming connections using mTLS and directly assigning to users.
    	// Generally this is the CA bundle file used to authenticate client certificates
    	// If this value is nil, then mutual TLS is disabled.
    	ClientCAContentProvider dynamiccertificates.CAContentProvider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    Actionable tasks in Gradle are tasks that perform actual work, such as compiling code.
    Lifecycle tasks are tasks that do not do work themselves.
    These tasks have no actions, instead, they bundle actionable tasks and serve as _targets_ for the build.
    
    image::writing-tasks-6.png[]
    
    A well-organized setup of lifecycle tasks enhances the accessibility of your build for new users and simplifies integration with CI.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top