Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,065 for desert (0.14 sec)

  1. cmd/kubeadm/app/cmd/reset.go

    		If you wish to reset iptables, you must do so manually by using the "iptables" command.
    
    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    		Please, check the contents of the $HOME/.kube/config file.
    	`)
    
    	cniCleanupInstructions = dedent.Dedent(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. src/runtime/runtime_test.go

    	for i := 0; i < b.N; i++ {
    		defer1()
    	}
    }
    
    func defer1() {
    	defer func(x, y, z int) {
    		if recover() != nil || x != 1 || y != 2 || z != 3 {
    			panic("bad recover")
    		}
    	}(1, 2, 3)
    }
    
    func BenchmarkDefer10(b *testing.B) {
    	for i := 0; i < b.N/10; i++ {
    		defer2()
    	}
    }
    
    func defer2() {
    	for i := 0; i < 10; i++ {
    		defer func(x, y, z int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/certs_test.go

    			require.NoError(t, json.Unmarshal(output.Bytes(), &info))
    			assert.Len(t, info.Certificates, len(kubeadmCerts)+len(kubeConfigs))
    			assert.Len(t, info.CertificateAuthorities, len(caCerts))
    			for _, cert := range info.Certificates {
    				if tc.brokenCertName == cert.Name {
    					assert.True(t, cert.Missing, "expected certificate to be missing")
    				} else {
    					assert.False(t, cert.Missing, "expected certificate to be present")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                        assert deps.size() == 1
                        assert deps[0].attempted.group == 'org.utils'
                        assert deps[0].attempted.module == 'api'
                        assert deps[0].attempted.version == '1.123.15'
                        assert deps[0].attemptedReason.selectedByRule
                        assert deps[0].failure.message.contains('1.123.15')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/ComponentTypeModelRuleExtractorTest.groovy

            when:
            apply(registration, mockRegistry)
    
            then:
            1 * mockRegistry.configure(_, _) >> { ModelActionRole role, ModelAction action ->
                assert role == ModelActionRole.Mutate
                assert action.subject == ModelReference.of(FACTORY_REGISTRY_TYPE)
            }
            0 * _
    
            where:
            ruleName           | plugin
            "validTypeRule"    | ComponentBasePlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            if (jvm.javaVersion.isJava9Compatible()) {
                assert jvm.jre == null
                if (alsoStandaloneJreHome) {
                    assert jvm.standaloneJre == null
                }
            } else {
                assert jvm.jre == softwareRoot.file(jreHome)
                if (alsoStandaloneJreHome) {
                    assert jvm.standaloneJre == softwareRoot.file(jreHome)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                // check some built-in tasks
                assert schema["help"] == "Help"
                assert schema["projects"] == "ProjectReportTask"
                assert schema["tasks"] == "TaskReportTask"
                assert schema["properties"] == "PropertyReportTask"
    
                // check some tasks from the project itself
                assert schema["foo"] == "Foo"
                assert schema["bar"] == "Foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			if (err != nil) != test.expectedError {
    				t.Fatalf(dedent.Dedent(
    					"validateKubeConfig failed\n%s\nexpected error: %t\n\tgot: %t\nerror: %v"),
    					name,
    					test.expectedError,
    					(err != nil),
    					err,
    				)
    			}
    		})
    	}
    }
    
    func TestValidateKubeconfigsForExternalCA(t *testing.T) {
    	tmpDir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpDir)
    	pkiDir := filepath.Join(tmpDir, "pki")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/CharStreamsTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Strings;
    import com.google.common.collect.ImmutableList;
    import java.io.EOFException;
    import java.io.FilterReader;
    import java.io.IOException;
    import java.io.Reader;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/CharStreamsTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.base.Strings;
    import com.google.common.collect.ImmutableList;
    import java.io.EOFException;
    import java.io.FilterReader;
    import java.io.IOException;
    import java.io.Reader;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top