Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for b0Bundle (2.58 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            when:
            generate {
                library('foo', 'g:a:v')
                library('bar', 'g:a:v')
                bundle('one.cool', ['foo', 'bar'])
                bundle('oneCool', ['foo', 'bar'])
    
                bundle("other.cool", ['foo'])
                bundle("other_cool", ['bar'])
                bundle("otherCool", ['bar'])
            }
    
            then:
            ex = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

    }
    
    // Replicate the JUnit 5 build, which lazily configures the Jar task to add the bundle extension and its action but does NOT apply any BND plugins
    tasks.withType(Jar).configureEach {
        BundleTaskExtension bundle = extensions.create(BundleTaskExtension.NAME, BundleTaskExtension.class, it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

    Status RestoreCheckpoint(SavedModelV2Bundle* bundle,
                             const RevivedObjects& revived_objects,
                             const std::string& directory,
                             ImmediateExecutionContext* context) {
      // TODO(bmzhao): Batch up all the restores into a single restore op per
      // device, following logic in MultiDeviceSaver.
      TF_RETURN_IF_ERROR(bundle->VisitObjectsToRestore(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/loader.cc

                                  SavedModelBundle* const bundle) {
      TF_RETURN_IF_ERROR(ReadMetaGraphDefFromSavedModel(export_dir, tags,
                                                        &bundle->meta_graph_def));
      TF_RETURN_IF_ERROR(
          ReadSavedModelDebugInfoIfPresent(export_dir, &bundle->debug_info));
      TF_RETURN_IF_ERROR(LoadMetagraphIntoSession(
          session_options, bundle->meta_graph_def, &bundle->session));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

        MLIRImportOptions options,
        std::unique_ptr<tensorflow::SavedModelBundle>* saved_model_bundle) {
      // Create local bundle if no one is provided to use.
      std::unique_ptr<tensorflow::SavedModelBundle> bundle;
      if (saved_model_bundle == nullptr) {
        bundle = std::make_unique<tensorflow::SavedModelBundle>();
      } else if (*saved_model_bundle == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top