Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 404 for bundles (0.21 sec)

  1. src/go/internal/gcimporter/gcimporter_test.go

    	testenv.MustHaveGoBuild(t)
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	compileAndImportPkg(t, "issue15920")
    }
    
    func TestIssue20046(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/cache/secretcache.go

    	certMutex sync.RWMutex
    
    	// outputMutex protects writes of certificates to disk
    	outputMutex sync.Mutex
    
    	// Dynamically configured Trust Bundle Mutex
    	configTrustBundleMutex sync.RWMutex
    	// Dynamically configured Trust Bundle
    	configTrustBundle []byte
    
    	// queue maintains all certificate rotation events that need to be triggered when they are about to expire
    	queue queue.Delayed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Input properties can be overridden by specifying the same property name.
    
    .Make the bundle task cacheable
    ====
    include::sample[dir="snippets/buildCache/cacheable-bundle/kotlin",files="build.gradle.kts[tags=bundle-task]"]
    include::sample[dir="snippets/buildCache/cacheable-bundle/groovy",files="build.gradle[tags=bundle-task]"]
    ====
    
    [[sec:build_cache_configure]]
    == Configure the Build Cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    			// TODO(jaellio): Currently, when the USE_CACERTS_FOR_SELF_SIGNED_CA flag is true istiod
    			// handles loading and updating the "cacerts" secret with the "istio-generated" key the
    			// same way it handles the "istio-ca-secret" secret. Isitod utilizes a secret watch instead
    			// of file watch to check for secret updates. This may change in the future, and istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/controller/controller.go

    var scope = log.RegisterScope("validationController", "validation webhook controller")
    
    type Options struct {
    	// Istio system namespace where istiod resides.
    	WatchedNamespace string
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	// Revision for control plane performing patching on the validating webhook.
    	Revision string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    		if _, found := u.handles[x]; found {
    			return x
    		}
    	}
    	return nil
    }
    
    // setHandle sets the handle for type parameter x
    // (and all its joined type parameters) to h.
    func (u *unifier) setHandle(x *TypeParam, h *Type) {
    	hx := u.handles[x]
    	assert(hx != nil)
    	for y, hy := range u.handles {
    		if hy == hx {
    			u.handles[y] = h
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                binary.getExecutableFile().set(link.flatMap(task -> task.getLinkedFile()));
    
                DefaultSwiftXCTestBundle bundle = (DefaultSwiftXCTestBundle) binary;
                bundle.getLinkTask().set(link);
                bundle.getRunScriptFile().set(install.flatMap(task -> task.getRunScriptFile()));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    	if err != nil {
    		t.Fatalf("failed to write cert: %v", err)
    	}
    
    	// rootCACert is treated as an intermediate CA here
    	bundle := []*x509.Certificate{servCert, rootCACert}
    	err = WriteCertBundle(tmpdir, "bundle", bundle)
    	if err != nil {
    		t.Fatalf("failed to write cert bundle: %v", err)
    	}
    
    	var tests = []struct {
    		desc          string
    		path          string
    		name          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    		if _, found := u.handles[x]; found {
    			return x
    		}
    	}
    	return nil
    }
    
    // setHandle sets the handle for type parameter x
    // (and all its joined type parameters) to h.
    func (u *unifier) setHandle(x *TypeParam, h *Type) {
    	hx := u.handles[x]
    	assert(hx != nil)
    	for y, hy := range u.handles {
    		if hy == hx {
    			u.handles[y] = h
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

                if (provider.getType()!=null && ExternalModuleDependencyBundle.class.isAssignableFrom(provider.getType())) {
                    ExternalModuleDependencyBundle bundle = Cast.uncheckedCast(provider.get());
                    for (MinimalExternalModuleDependency dependency : bundle) {
                        doAddRegularDependency(configuration, dependency, configureClosure);
                    }
                    return null;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top