Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 510 for bundan (0.11 sec)

  1. 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)
  2. 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)
  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. 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)
  5. pom.xml

    				<groupId>org.apache.felix</groupId>
    				<artifactId>maven-bundle-plugin</artifactId>
    				<version>5.1.9</version>
    				<extensions>true</extensions>
    
    				<configuration>
    					<instructions>
    						<Bundle-Version>${osgi.version}</Bundle-Version>
    						<Bundle-License>LGPL</Bundle-License>
    						<Bundle-Vendor>CodeLibs</Bundle-Vendor>
    						<Bundle-SymbolicName>org.codelibs.jcifs</Bundle-SymbolicName>
    						<Export-Package>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  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. 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)
Back to top