Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 463 for b0Bundle (0.12 sec)

  1. tensorflow/cc/saved_model/bundle_v2.cc

        bundle->variable_reader_ =
            std::make_unique<BundleReader>(Env::Default(), variables_prefix);
        TF_RETURN_WITH_CONTEXT_IF_ERROR(
            bundle->variable_reader_->status(),
            "Unable to load SavedModel variables checkpoint from ",
            variables_prefix);
    
        // Deserialize the object graph proto from the tensor bundle.
        TF_RETURN_IF_ERROR(ReadCheckpointObjectGraph(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. pkg/registry/certificates/clustertrustbundle/storage/storage_test.go

    		func(object runtime.Object) runtime.Object {
    			bundle := object.(*certificates.ClusterTrustBundle)
    			bundle.Spec.TrustBundle = strings.Join([]string{validCert1, validCert2}, "\n")
    			return bundle
    		},
    		// Invalid update
    		func(object runtime.Object) runtime.Object {
    			bundle := object.(*certificates.ClusterTrustBundle)
    			bundle.Spec.TrustBundle = ""
    			return bundle
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 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. src/crypto/x509/root_linux.go

    	"/etc/ssl/certs/ca-certificates.crt",                // Debian/Ubuntu/Gentoo etc.
    	"/etc/pki/tls/certs/ca-bundle.crt",                  // Fedora/RHEL 6
    	"/etc/ssl/ca-bundle.pem",                            // OpenSUSE
    	"/etc/pki/tls/cacert.pem",                           // OpenELEC
    	"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
    	"/etc/ssl/cert.pem",                                 // Alpine Linux
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:55:35 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pkg/registry/certificates/clustertrustbundle/storage/storage.go

    func getAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	bundle, ok := obj.(*api.ClusterTrustBundle)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a clustertrustbundle")
    	}
    
    	selectableFields := generic.MergeFieldsSets(generic.ObjectMetaFieldsSet(&bundle.ObjectMeta, false), fields.Set{
    		"spec.signerName": bundle.Spec.SignerName,
    	})
    
    	return labels.Set(bundle.Labels), selectableFields, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    Mikhail Lopatkin <******@****.***> 1697226821 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    	gotBundle, err = ctbManager.GetTrustAnchorsByName("ctb2", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    	if diff := diffBundles(gotBundle, []byte(ctb2.Spec.TrustBundle)); diff != "" {
    		t.Fatalf("Got bad bundle; diff (-got +want)\n%s", diff)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/kotlin/org/gradle/kotlin/dsl/samples/androidstudio/MainActivity.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.v7.app.AppCompatActivity
    import android.os.Bundle
    
    class MainActivity : AppCompatActivity() {
    
        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 326 bytes
    - Viewed (0)
Back to top