Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 210 for b0Bundle (0.33 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

                            library("greeter", "some", "artifact").versionRef("greeter")
                            library("sub-greeter", "some", "artifact").versionRef("greeter")
                            bundle("greeter", ["greeter"])
                            bundle("sub-greeter", ["greeter"])
                        }
                    }
                }
            """
            buildFile.renameTo(file('fixture.gradle'))
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/internal/moddeps/moddeps_test.go

    			}
    		}
    	}
    
    	// Build the bundle binary at the golang.org/x/tools
    	// module version specified in GOROOT/src/cmd/go.mod.
    	bundleDir := t.TempDir()
    	r := runner{
    		Dir: filepath.Join(testenv.GOROOT(t), "src/cmd"),
    		Env: append(os.Environ(), modcacheEnv...),
    	}
    	r.run(t, goBin, "build", "-mod=readonly", "-o", bundleDir, "golang.org/x/tools/cmd/bundle")
    
    	var gorootCopyDir string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Because it's frequent that some dependencies are systematically used together in different projects, a version catalog offers the concept of a "dependency bundle".
    A bundle is basically an alias for several dependencies.
    For example, instead of declaring 3 individual dependencies like above, you could write:
    
    .Using a dependency bundle
    ====
    include::sample[dir="snippets/dependencyManagement/catalogs-settings/kotlin",files="build.gradle.kts[tags=use_dependency_bundle]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. pkg/security/security.go

    		"/etc/ssl/certs/ca-certificates.crt",                // Debian/Ubuntu/Gentoo etc.
    		"/etc/pki/tls/certs/ca-bundle.crt",                  // Fedora/RHEL 6
    		"/etc/ssl/ca-bundle.pem",                            // OpenSUSE
    		"/etc/pki/tls/cacert.pem",                           // OpenELEC
    		"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem", // CentOS/RHEL 7
    		"/etc/ssl/cert.pem",                                 // Alpine Linux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    		}
    	}
    	closer()
    	return nil, errors.New("failed to set up idevicedebugserverproxy")
    }
    
    // findDeviceAppPath returns the device path to the app with the
    // given bundle ID. It parses the output of ideviceinstaller -l -o xml,
    // looking for the bundle ID and the corresponding Path value.
    func findDeviceAppPath(bundleID string) (string, error) {
    	cmd := idevCmd(exec.Command("ideviceinstaller", "-l", "-o", "xml"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	}
    
    	return nil
    }
    
    // WriteCertBundle stores the given certificate bundle at the given location
    func WriteCertBundle(pkiPath, name string, certs []*x509.Certificate) error {
    	for i, cert := range certs {
    		if cert == nil {
    			return errors.Errorf("found nil certificate at position %d when writing bundle to file", i)
    		}
    	}
    
    	certificatePath := pathForCert(pkiPath, name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    		caCertInMem, _, _, _ := rotator.ca.GetCAKeyCertBundle().GetAllPem()
    		// If CA certificate is different from the CA certificate in local key
    		// cert bundle, it implies that other Citadels have updated istio-ca-secret or cacerts.
    		// Reload root certificate into key cert bundle.
    		if !bytes.Equal(caCertInMem, caSecret.Data[CACertFile]) {
    			rootCertRotatorLog.Warnf("CA cert in KeyCertBundle does not match CA cert in "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/generate_test.go

    						t.Fatalf("expected validation URL %s, got %s", tc.whURL, *validationWhConf.URL)
    					}
    				}
    				if tc.whCA != "" {
    					if string(validationWhConf.CABundle) != tc.whCA {
    						t.Fatalf("expected CA bundle %q, got %q", tc.whCA, validationWhConf.CABundle)
    					}
    				}
    			}
    		})
    	}
    }
    
    func TestGenerateMutatingWebhook(t *testing.T) {
    	tcs := []struct {
    		name        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                import org.joda.time.LocalTime;
    
                import android.app.Activity;
                import android.os.Bundle;
                import android.widget.TextView;
    
                public class ${className} extends Activity {
    
                    @Override
                    public void onCreate(Bundle savedInstanceState) {
                        super.onCreate(savedInstanceState);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/volume/projected/projected_test.go

    			source: v1.ProjectedVolumeSource{
    				Sources: []v1.VolumeProjection{
    					{
    						ClusterTrustBundle: &v1.ClusterTrustBundleProjection{
    							Name: utilptr.String("foo"),
    							Path: "bundle.pem",
    						},
    					},
    				},
    				DefaultMode: utilptr.Int32(0644),
    			},
    			bundles: []runtime.Object{
    				&certificatesv1alpha1.ClusterTrustBundle{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
Back to top