Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 442 for b0Bundle (0.18 sec)

  1. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/java/com/example/myproduct/app/MyProductAppActivity.kt

    package com.example.myproduct.app
    
    import android.app.Activity
    import android.os.AsyncTask
    import android.os.Bundle
    import android.text.Html
    import android.text.method.LinkMovementMethod
    import android.widget.ScrollView
    import android.widget.TableLayout
    import android.widget.TableRow
    import android.widget.TextView
    import com.example.myproduct.user.table.TableBuilder
    
    
    class MyProductAppActivity : Activity() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	if len(caBundle) == 0 {
    		return nil, fmt.Errorf("missing content for CA bundle %q", name)
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	verifyOptions := defaultVerifyOptions()
    	verifyOptions.Roots, err = cert.NewPoolFromBytes(caBundle)
    	if err != nil {
    		return nil, fmt.Errorf("error loading CA bundle for %q: %v", name, err)
    	}
    
    	return &caBundleAndVerifier{
    		caBundle:      caBundle,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. android-test-app/src/main/kotlin/okhttp/android/testapp/MainActivity.kt

    package okhttp.android.testapp
    
    import android.os.Bundle
    import androidx.activity.ComponentActivity
    import okhttp3.Call
    import okhttp3.Callback
    import okhttp3.HttpUrl.Companion.toHttpUrl
    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    import okio.IOException
    
    class MainActivity : ComponentActivity() {
      override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/saved_model_fuzz.cc

      SavedModelBundleLite bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      string export_dir = "ram://";
      TF_CHECK_OK(tsl::WriteBinaryProto(tensorflow::Env::Default(),
                                        export_dir + kSavedModelFilenamePb, model));
    
      LoadSavedModel(session_options, run_options, export_dir,
                     {kSavedModelTagServe}, &bundle)
          .IgnoreError();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 09 23:47:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DependencyBundleValueSource.java

            Property<DefaultVersionCatalog> getConfig();
        }
    
        @Override
        public List<DependencyModel> obtain() {
            String bundle = getParameters().getBundleName().get();
            DefaultVersionCatalog config = getParameters().getConfig().get();
            BundleModel bundleModel = config.getBundle(bundle);
            return bundleModel.getComponents().stream()
                .map(config::getDependencyData)
                .collect(Collectors.toList());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

        @Optional
        @PathSensitive(PathSensitivity.NAME_ONLY)
        @InputFile
        protected File getBundleBinary() {
            RegularFile bundle = getBundleBinaryFile().get();
            File bundleFile = bundle.getAsFile();
            if (!bundleFile.exists()) {
                return null;
            }
            return bundleFile;
        }
    
        /**
         * Returns the install directory property.
         */
        @OutputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. android/guava/pom.xml

          </plugin>
          <plugin>
            <extensions>true</extensions>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>5.1.8</version>
            <executions>
              <execution>
                <id>bundle-manifest</id>
                <phase>process-classes</phase>
                <goals>
                  <goal>manifest</goal>
                </goals>
              </execution>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top