Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 931 for Everything (0.31 sec)

  1. pkg/kube/krt/informer.go

    		synced: i.synced,
    	}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (i *informer[I]) dump() {
    	i.log.Errorf(">>> BEGIN DUMP")
    	for _, obj := range i.inf.List(metav1.NamespaceAll, klabels.Everything()) {
    		i.log.Errorf("%s/%s", obj.GetNamespace(), obj.GetName())
    	}
    	i.log.Errorf("<<< END DUMP")
    }
    
    func (i *informer[I]) name() string {
    	return i.collectionName
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_3_Component.svg[]
    
    NOTE: This diagram diverges from the C4 Model because the scope is the whole Kotlin DSL system instead of having one diagram per container.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/ListToArrayTester.java

     */
    @GwtCompatible
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    public class ListToArrayTester<E> extends AbstractListTester<E> {
      // CollectionToArrayTester tests everything except ordering.
    
      public void testToArray_noArg() {
        Object[] actual = getList().toArray();
        assertArrayEquals("toArray() order should match list", createOrderedArray(), actual);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  4. hack/verify-govulncheck.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    # make sure everything is committed
    kube::util::ensure_clean_working_dir
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    go install golang.org/x/vuln/cmd/govulncheck@v1.0.1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/log/config.go

    	// vs. reading it's internal state.
    	useJSON atomic.Value
    )
    
    func init() {
    	// use our defaults for starters so that logging works even before everything is fully configured
    	_ = Configure(DefaultOptions())
    }
    
    // See: https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry#LogSeverity
    var stackdriverSeverityMapping = map[zapcore.Level]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    		sets.New("initial", "common"))
    
    	tt.WaitUnordered("add/common", "add/initial")
    
    	// Update the cluster
    	c.AddSecret("s0", "c0")
    	var fatal error
    	retry.UntilOrFail(t, func() bool {
    		have := clienttest.Names((*component.ForCluster("c0")).client.List(metav1.NamespaceAll, klabels.Everything()))
    		if have.Equals(sets.New("later", "common")) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t06/ProjectInheritanceTest.java

            File pom0 = new File(localRepo, "p0/pom.xml");
    
            File pom0Basedir = pom0.getParentFile();
    
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load everything...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertEquals(pom0Basedir, project1.getParent().getBasedir());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t07/ProjectInheritanceTest.java

            File pom0 = new File(localRepo, "p0/pom.xml");
    
            File pom0Basedir = pom0.getParentFile();
    
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load everything...
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertEquals(pom0Basedir, project1.getParent().getBasedir());
            System.out.println("Project " + project1.getId() + " " + project1);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    }
    
    configurations {
        sampleConfig {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") { ComponentSelection selection ->
                        // Veto everything except patch releases
                        if (selection.candidate.version.matches('\\d+.\\d+\\.\\d+')) {
                            logger.lifecycle("** Accepted version: ${selection.candidate.version} **")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

        }
    }
    
    configurations {
        create("sampleConfig") {
            resolutionStrategy {
                componentSelection {
                    withModule("org.sample:api") {
                        // Veto everything except patch releases
                        if (candidate.version.matches("""\d+.\d+\.\d+""".toRegex())) {
                            logger.lifecycle("** Accepted version: ${candidate.version} **")
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top