Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 119 for test1f (1.43 sec)

  1. src/test/java/jcifs/tests/PACTest.java

    import org.junit.Assert;
    import org.junit.Test;
    
    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");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

        }
    
        @Test
        void testBadDependencyScope() throws Exception {
            SimpleProblemCollector result = validate("bad-dependency-scope.xml");
    
            assertViolations(result, 0, 0, 2);
    
            assertTrue(result.getWarnings().get(0).contains("test:f"));
    
            assertTrue(result.getWarnings().get(1).contains("test:g"));
        }
    
        @Test
        void testBadDependencyManagementScope() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/ipset_test.go

    			test.set.setIPSetDefaults()
    			if !reflect.DeepEqual(test.set, test.expect) {
    				t.Errorf("expected ipset struct: %v, got ipset struct: %v", test.expect, test.set)
    			}
    		})
    	}
    }
    
    func Test_checkIPandProtocol(t *testing.T) {
    	testset := &IPSet{
    		Name:       "test1",
    		SetType:    HashIPPort,
    		HashFamily: ProtocolFamilyIPV4,
    		HashSize:   1024,
    		MaxElem:    65536,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    be provided with a specific list of buckets via the `bucket` query parameter. Only metrics for the given buckets will be returned (with the bucket label set). For example to query API metrics for buckets `test1` and `test2`, make a scrape request to `/minio/metrics/v3/api/bucket?buckets=test1,test2`. 
    
    Instead of a metrics scrape, it is also possible to list the metrics that would be returned by a path. This is done by adding a `?list` query parameter. The MinIO server will then list all possible...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

    // RUN: tf-opt -split-input-file -tf-test-resource-alias-analysis -verify-diagnostics %s | FileCheck %s
    
    // Test 2 resources that do not alias.
    
    !tf_res = tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-LABEL: func @non_aliasing_reads_writes
    // expected-remark@below {{Region #0, Arg #0, ID 1 : 1}}
    // expected-remark@below {{Region #0, Arg #1, ID 2 : 2}}
    func.func @non_aliasing_reads_writes(
      %arg0: !tf_res,
      %arg1: !tf_res,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // returns the created object.
    //
    // Arguments:
    //
    //   test_case_name:   name of the test case
    //   name:             name of the test
    //   type_param        the name of the test's type parameter, or NULL if
    //                     this is not a typed or a type-parameterized test.
    //   value_param       text representation of the test's value parameter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    	}
    }
    
    func TestRESTMapperRESTMappingSelectsVersion(t *testing.T) {
    	expectedGroupVersion1 := schema.GroupVersion{Group: "tgroup", Version: "test1"}
    	expectedGroupVersion2 := schema.GroupVersion{Group: "tgroup", Version: "test2"}
    	expectedGroupVersion3 := schema.GroupVersion{Group: "tgroup", Version: "test3"}
    	internalObjectGK := schema.GroupKind{Group: "tgroup", Kind: "InternalObject"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    		name        string
    		cc          configClient
    		ccWithToken configClientWithToken
    		expected    error
    		file        []byte
    	}{
    		{"test1", configClient{clusterName: "k8s", userName: "user1"}, configClientWithToken{token: "abc"}, nil, []byte(configOut1)},
    		{"test2", configClient{clusterName: "kubernetes", userName: "user2", serverURL: "localhost:8080"}, configClientWithToken{token: "cba"}, nil, []byte(configOut2)},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

                task jar(type: Jar) {
                    from 'test'
                    destinationDirectory = buildDir
                    archiveFileName = 'test.jar'
                    manifest { $manifest }
                }"""
            }
    
            createDir('test') {
                dir1 {
                    file 'file1.txt'
                }
            }
            def jar = file('build/test.jar')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    Jason van Zyl <******@****.***> 1092078151 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
Back to top