Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 177 for dialing (0.11 sec)

  1. cluster/addons/addon-manager/kube-addons.sh

    # will be reconciled for now.
    CLUSTER_SERVICE_LABEL="kubernetes.io/cluster-service"
    
    # Whether only one addon manager should be running in a multi-master setup.
    # Disabling this flag will force all addon managers to assume they are the
    # leaders.
    ADDON_MANAGER_LEADER_ELECTION=${ADDON_MANAGER_LEADER_ELECTION:-true}
    
    # Remember that you can't log from functions that print some output (because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. hack/lib/test.sh

    # Runs the query multiple times before failing it.
    # $1: Object on which get should be run
    # $2: The go-template to run on the result
    # $3: The expected output
    # $4: Additional args to be passed to kubectl
    kube::test::wait_object_assert() {
      kube::test::object_assert 10 "$@"
    }
    
    # Asserts that the output of a given get query is as expected.
    # Can run the query multiple times before failing it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		bad := b.search(broken)
    		if bad == nil {
    			if found == 0 {
    				b.Fatalf("cannot find any failing change sets of size ≤ %d", b.MaxSet)
    			}
    			break
    		}
    
    		// Confirm that set really does fail, to avoid false accusations.
    		// Also asking for user-visible output; earlier runs did not.
    		b.Logf("confirming failing change set")
    		b.Add = append(b.Add[:0], bad...)
    		broken = b.Run("v")
    		if broken.Success {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    This is called _dependency locking_.
    
    It enables, amongst others, the following scenarios:
    
    * Companies dealing with multi repositories no longer need to rely on `-SNAPSHOT` or changing dependencies,
    which sometimes result in cascading failures when a dependency introduces a bug or incompatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            final Closure matcher
            final boolean failing
            final boolean missing
    
            SftpExpectOne(int type, String notMetMessage, boolean failing = false, boolean missing = false) {
                this.expectedType = type
                this.notMetMessage = "Expected SFTP command not received: $notMetMessage"
                this.matcher = matcher
                this.failing = failing
                this.missing = missing
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows_test.go

    	vol := string(output)
    
    	dirlink := filepath.Join(tmpdir, "dirlink")
    	output, err := testenv.Command(t, "cmd", "/c", "mklink", "/J", dirlink, vol).CombinedOutput()
    	if err != nil {
    		t.Fatalf("failed to run mklink %v %v: %v %q", dirlink, vol, err, output)
    	}
    	got, err := filepath.EvalSymlinks(dirlink)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got != dirlink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/runtime/netpoll_solaris.go

    // also re-associate the events that were not part of this current
    // notification with the file descriptor. Failing to do this would
    // mean each notification will prevent concurrent code using the
    // same file descriptor in parallel.
    //
    // The logic dealing with re-associations is encapsulated in
    // runtime·netpollupdate. This function takes care to associate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * @return The object with the given name, or null if there is no such object in this collection.
         */
        @Nullable
        T findByName(String name);
    
        /**
         * Locates an object by name, failing if there is no such object.
         *
         * @param name The object name
         * @return The object with the given name. Never returns null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(bottomSpecs = "XCTestTestFrameworkIntegrationTest")
        def "failing tests cause report url to be printed"() {
            given:
            createPassingFailingTest()
    
            when:
            fails "check"
    
            then:
            failure.assertHasCause("There were failing tests. See the report at:")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

            executedAndNotSkipped(':buildDashboard')
        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
        @Requires(UnitTestPreconditions.StableGroovy) // FIXME KM temporarily disabling while CodeNarc runs in Worker API with multiple Groovy runtimes
        void 'enabling an additional report renders buildDashboard out-of-date'() {
            given:
            goodCode()
            withCodenarc()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top