Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,277 for bundles (0.39 sec)

  1. 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)
  2. 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)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            withLibraryDependencies<DependencyRemovalByNameRule>(
                "xyz.rogfam:littleproxy",
                setOf("barchart-udt-bundle", "guava", "commons-cli")
            )
    
            // TODO: Gradle profiler should use the bundled tooling API.
            //   This should actually be handled by conflict resolution, though it doesn't seem to work.
            //   See https://github.com/gradle/gradle/issues/12002.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/ResourceBundleUtilTest.java

            final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages", null, this.getClass().getClassLoader());
            assertThat(bundle, is(notNullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetString() throws Exception {
            final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages");
            assertThat(bundle.getString("ECL0001"), is(notNullValue()));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. futures/failureaccess/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: Tue Oct 17 02:24:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

         *
         * @param bundle
         *            リソースバンドル。{@literal null}や空文字列であってはいけません
         * @param key
         *            キー
         * @return 指定されたキーの文字列。{@literal null}や空文字列であってはいけません
         * @see ResourceBundle#getString(String)
         */
        public static String getString(final ResourceBundle bundle, final String key) {
            assertArgumentNotNull("bundle", bundle);
            assertArgumentNotEmpty("key", key);
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/groovy/groovyDependency/groovy/build.gradle

    }
    
    // tag::groovy-test-dependency[]
    dependencies {
        testImplementation 'org.codehaus.groovy:groovy-all:2.4.15'
    }
    // end::groovy-test-dependency[]
    
    // tag::bundled-groovy-dependency[]
    dependencies {
        implementation localGroovy()
    }
    // end::bundled-groovy-dependency[]
    
    dependencies {
        testImplementation 'junit:junit:4.13'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 395 bytes
    - Viewed (0)
  8. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    	cl := CAClient{
    		SignInvokeCount: 0,
    		certLifetime:    certLifetime,
    		mockTrustAnchor: mockTrustAnchor,
    	}
    	bundle, err := util.NewVerifiedKeyCertBundleFromFile(caCertPath, caKeyPath, certChainPath, rootCertPath)
    	if err != nil {
    		return nil, fmt.Errorf("mock ca client creation error: %v", err)
    	}
    	cl.bundle = bundle
    
    	atomic.StoreUint64(&cl.SignInvokeCount, 0)
    	return &cl, nil
    }
    
    func (c *CAClient) Close() {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. src/runtime/cgo/gcc_darwin_arm64.c

    // By default ios/arm64 processes start in "/".
    static void
    init_working_dir()
    {
    	CFBundleRef bundle = CFBundleGetMainBundle();
    	if (bundle == NULL) {
    		fprintf(stderr, "runtime/cgo: no main bundle\n");
    		return;
    	}
    	CFURLRef url_ref = CFBundleCopyResourceURL(bundle, CFSTR("Info"), CFSTR("plist"), NULL);
    	if (url_ref == NULL) {
    		// No Info.plist found. It can happen on Corellium virtual devices.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top