Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for bundles (0.56 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register("printBundle") {
        dependsOn("bundle")
    
        val projectLayout = layout
    
        doLast {
            println(projectLayout.buildDirectory.file("bundle.js").get().asFile.readText())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/saved_model_bundle_lite_test.cc

    TEST_F(LoaderTest, ExtendFailsTest) {
      SavedModelBundleLite bundle;
      SessionOptions session_options;
      RunOptions run_options;
    
      const string export_dir =
          io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataSharded);
      TF_ASSERT_OK(LoadSavedModel(session_options, run_options, export_dir,
                                  {kSavedModelTagServe}, &bundle));
      Status s = bundle.GetSession()->Extend({});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyCollector.java

        @Override
        public <D extends Dependency> void bundle(Iterable<? extends D> bundle) {
            doAddBundleEager(bundle, null);
        }
    
        @Override
        public <D extends Dependency> void bundle(Iterable<? extends D> bundle, Action<? super D> configuration) {
            doAddBundleEager(bundle, configuration);
        }
    
        @Override
        public <D extends Dependency> void bundle(Provider<? extends Iterable<? extends D>> bundle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/build.gradle.kts

        @get:PathSensitive(PathSensitivity.RELATIVE)     // <4>
        abstract val configFiles: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val bundle: RegularFileProperty
    
        init {
            args.addAll("run", "bundle")
            bundle = projectLayout.buildDirectory.file("bundle.js")
            scripts = projectLayout.projectDirectory.dir("scripts")
            configFiles.from(projectLayout.projectDirectory.file("package.json"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/bundle_v2_test.cc

          testing::TensorFlowSrcRoot(), kTestData, "VarsAndArithmeticObjectGraph");
    
      SavedModelV2Bundle bundle;
      TF_ASSERT_OK(SavedModelV2Bundle::Load(export_dir, &bundle));
    
      // Ensure that there are nodes in the trackable_object_graph.
      EXPECT_GT(bundle.trackable_object_graph().nodes_size(), 0);
    
      RestoreVarsAndVerify(&bundle, {"variable_x", "variable_y", "child_variable"});
    }
    
    TEST_F(BundleV2Test, LoadsCyclicModule) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 17:51:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. pilot/pkg/keycertbundle/watcher.go

    func (w *Watcher) SetAndNotify(key, cert, caBundle []byte) {
    	w.mutex.Lock()
    	defer w.mutex.Unlock()
    	if len(key) != 0 {
    		w.bundle.KeyPem = key
    	}
    	if len(cert) != 0 {
    		w.bundle.CertPem = cert
    	}
    	if len(caBundle) != 0 {
    		w.bundle.CABundle = caBundle
    	}
    	for _, ch := range w.watchers {
    		select {
    		case ch <- struct{}{}:
    		default:
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/buildship.gradle

         """Manifest-Version: 1.0
    Bundle-ManifestVersion: 2
    Bundle-Name: Gradle Tooling API
    Bundle-Vendor: Gradle Inc.
    Bundle-SymbolicName: org.gradle.toolingapi
    Bundle-Version: ${bundleVersion}.v${qualifier}
    Bundle-ClassPath: .
    Bundle-RequiredExecutionEnvironment: JavaSE-1.6
    Export-Package: ${packageExports}
    Require-Bundle: org.slf4j.api;bundle-version="1.7.2"
    """
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. pilot/pkg/keycertbundle/watcher_test.go

    func TestWatcher(t *testing.T) {
    	watcher := NewWatcher()
    
    	// 1. no key cert bundle
    	_, watch1 := watcher.AddWatcher()
    	select {
    	case bundle := <-watch1:
    		t.Errorf("watched unexpected keyCertBundle: %v", bundle)
    		return
    	default:
    	}
    
    	key := []byte("key")
    	cert := []byte("cert")
    	ca := []byte("caBundle")
    	// 2. set key cert bundle
    	watcher.SetAndNotify(key, cert, ca)
    	select {
    	case <-watch1:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 28 17:46:00 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/fuzz_test.go

    	fuzz.Fuzz(f, func(fg fuzz.Helper) {
    		bundle := fuzz.Struct[trustdomain.Bundle](fg)
    		push := fuzz.Struct[*model.PushContext](fg, validatePush)
    		node := fuzz.Struct[*model.Proxy](fg)
    		selectionOpts := model.PolicyMatcherForProxy(node)
    		policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
    		option := fuzz.Struct[Option](fg)
    		b := New(bundle, push, policies, option)
    		if b == nil {
    			fg.T().Skip()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top