Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for svctest (0.15 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		before: svctest.MakeService("foo",
    			svctest.SetTypeLoadBalancer,
    			svctest.SetExternalTrafficPolicy(api.ServiceExternalTrafficPolicyLocal),
    			svctest.SetClusterIPs("10.0.0.93", "2000::76"),
    			svctest.SetUniqueNodePorts,
    			svctest.SetHealthCheckNodePort(31234)),
    		update: svctest.MakeService("foo",
    			svctest.SetTypeLoadBalancer,
    			svctest.SetExternalTrafficPolicy(api.ServiceExternalTrafficPolicyLocal),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/SidTest.java

    import jcifs.smb.SID;
    
    
    /**
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    public class SidTest extends BaseCIFSTest {
    
        /**
         * @param name
         * @param properties
         */
        public SidTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  3. maven-model/src/test/java/org/apache/maven/model/ScmTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Scm}.
     *
     */
    class ScmTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Scm().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Scm().equals(null));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'xctest'
    }
    
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // Disable the test report for the individual test task
                reports.html.required = false
            }
        }
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

    import jcifs.pac.PACDecodingException;
    import jcifs.pac.PacMac;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    @SuppressWarnings ( {
        "nls", "javadoc", "restriction"
    } )
    public class PACTest {
    
        @Test
        public void testNFold () {
            // rfc3961 test vectors
            verifyNfold(64, "012345", "be072631276b1955");
            verifyNfold(56, "password", "78a07b6caf85fa");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.Matchers
    import org.gradle.util.SetSystemProperties
    import org.junit.Rule
    import spock.lang.Specification
    
    class JvmTest extends Specification {
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        @Rule
        SetSystemProperties sysProp = new SetSystemProperties()
    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. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/buildSrc/src/main/kotlin/myproject.xctest-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("xctest")
    }
    
    extensions.configure<SwiftXCTestSuite>() {
        binaries.configureEach {
            // Disable the test report for the individual test task
            runTask.get().reports.html.required = false
        }
    }
    
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/vcstest/vcstest.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package vcstest serves the repository scripts in cmd/go/testdata/vcstest
    // using the [vcweb] script engine.
    package vcstest
    
    import (
    	"cmd/go/internal/vcs"
    	"cmd/go/internal/vcweb"
    	"cmd/go/internal/web"
    	"crypto/tls"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"internal/testenv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/tasks/SyncTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks
    
    class SyncTest extends AbstractCopyTaskContractTest {
        private Sync task
    
        def setup() {
            task = createTask(Sync)
        }
    
        @Override
        AbstractCopyTask getTask() {
            task
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 17 18:59:41 UTC 2016
    - 849 bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/XCTest.java

    import org.gradle.api.tasks.SkipWhenEmpty;
    import org.gradle.api.tasks.testing.AbstractTestTask;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestExecuter;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestSelection;
    import org.gradle.nativeplatform.test.xctest.internal.execution.XCTestTestExecutionSpec;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top