Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for b0Bundle (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                    BundleModel bundle = config.getBundle(path);
                    List<String> coordinates = bundle.getComponents().stream()
                        .map(config::getDependencyData)
                        .map(LibrariesSourceGenerator::coordinatesDescriptorFor)
                        .collect(toList());
                    writeBundle(path, coordinates, bundle.getContext(), true, deprecated);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  2. security/pkg/pki/util/keycertbundle.go

    func NewKeyCertBundleFromPem(certBytes, privKeyBytes, certChainBytes, rootCertBytes []byte) *KeyCertBundle {
    	bundle := &KeyCertBundle{}
    	bundle.setAllFromPem(certBytes, privKeyBytes, certChainBytes, rootCertBytes)
    	return bundle
    }
    
    // NewVerifiedKeyCertBundleFromPem returns a new KeyCertBundle, or error if the provided certs failed the
    // verification.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. security/pkg/pki/util/keycertbundle_test.go

    			}
    		} else if tc.expectedErr != "" {
    			t.Errorf("%s: Expected error %s but succeeded", id, tc.expectedErr)
    		} else if bundle == nil {
    			t.Errorf("%s: the bundle should not be empty", id)
    		} else {
    			cert, key, chain, root := bundle.GetAllPem()
    			if len(cert) != 0 {
    				t.Errorf("%s: certBytes should be empty", id)
    			}
    			if len(key) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe.go

    				n, _ := resp.Body.Read(b)
    				errMsg = fmt.Sprintf("Calling %s failed with unexpected status: %v, fetching bundle: %s",
    					endpoint, resp.StatusCode, string(b[:n]))
    			} else {
    				break
    			}
    
    			if startTime.Add(retryTimeout).Before(time.Now()) {
    				return nil, fmt.Errorf("exhausted retries to fetch the SPIFFE bundle %s from url %s. Latest error: %v",
    					trustDomain, endpoint, errMsg)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            spec()
        }
    
        void hasBundle(String id, List<String> expectedElements) {
            assert model.hasBundle(id)
            def bundle = model.getBundle(id)?.components
            assert bundle != null: "Expected a bundle with name $id but it wasn't found"
            assert bundle == expectedElements
        }
    
        void hasVersion(String id, String version) {
            assert model.hasVersion(id)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe_test.go

    			errContains: `unexpected status: 503, fetching bundle: {"error": "system down"}`,
    		},
    		{
    			name:        "Bundle contains no certificate",
    			in:          input1,
    			extraCerts:  serverCerts,
    			statusCode:  http.StatusOK,
    			body:        invalidSpiffeX509Bundle,
    			errContains: "expected 1 certificate in x509-svid entry 0; got 0",
    		},
    		{
    			name:        "Bundle cannot be decoded",
    			in:          input1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

                """${intro}  - Problem: In version catalog ${catalog}, a bundle with name '${bundle}' declares a dependency on '${aliasRef}' which doesn't exist.
    
        Reason: Bundles can only contain references to existing library aliases.
    
        Possible solutions:
          1. Make sure that the library alias '${aliasRef}' is declared.
          2. Remove '${aliasRef}' from bundle '${bundle}'.
    
        ${documentation}"""
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                    module('org.gradle.test:lib:1.0')
                    module('org.gradle.test:lib2:1.0')
                }
            }
        }
    
        void "overriding the version of a bundle overrides the version of all dependencies of the bundle"() {
            tomlFile << """[libraries]
    lib = {group = "org.gradle.test", name="lib", version.require="1.0"}
    lib2.module = "org.gradle.test:lib2"
    lib2.version = "1.0"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. pilot/pkg/trustbundle/trustbundle_test.go

    	expectTbCount(t, tb, 2, 3*time.Second, "server1(running) trustAnchor not updated in bundle")
    
    	// Test3: Stop server1
    	server1.Close()
    	// Check server1's valid trustAnchor is no longer in the trustbundle within poll frequency window
    	expectTbCount(t, tb, 1, 6*time.Second, "server1(stopped) trustAnchor not removed from bundle")
    
    	// Test4: Update with server1, server2 and mesh pem ca
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      });
    
      std::string result;
      std::optional<tensorflow::Session *> session = std::nullopt;
      if (bundle) session = bundle->GetSession();
      auto status = tensorflow::ConvertTFExecutorToTFLOrFlatbuffer(
          module.value().get(), output_mlir, toco_flags, pass_config, tags,
          /*saved_model_dir=*/"", bundle.get(), &result, serialize_stablehlo_ops);
      if (!status.ok()) {
        llvm::errs() << status.message() << '\n';
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top