Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 283 for 1000Mi (0.1 sec)

  1. pkg/util/iptables/testing/parse_test.go

    			rule: `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 ! -s 10.0.0.0/8 -j KUBE-MARK-MASQ`,
    			parsed: &Rule{
    				Raw:                `-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 ! -s 10.0.0.0/8 -j KUBE-MARK-MASQ`,
    				Chain:              iptables.Chain("KUBE-SVC-XPGD46QRK7WJZT7O"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> TestHashCodes.hashCodeFrom(10000)
                1 * cachedResult.isChanging() >> changing
                1 * cachedResult.getModuleVersionId() >> id
                1 * cachePolicy.moduleExpiry({ it.id == id }, Duration.ZERO, changing) >> Stub(Expiry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%+.3f", 0i, "(+0.000+0.000i)"},
    	{"%+.3g", 0i, "(+0+0i)"},
    	{"%+.3e", 1 + 2i, "(+1.000e+00+2.000e+00i)"},
    	{"%+.3x", 1 + 2i, "(+0x1.000p+00+0x1.000p+01i)"},
    	{"%+.3f", 1 + 2i, "(+1.000+2.000i)"},
    	{"%+.3g", 1 + 2i, "(+1+2i)"},
    	{"%.3e", 0i, "(0.000e+00+0.000e+00i)"},
    	{"%.3x", 0i, "(0x0.000p+00+0x0.000p+00i)"},
    	{"%.3f", 0i, "(0.000+0.000i)"},
    	{"%.3F", 0i, "(0.000+0.000i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse_test.go

    	`(?<x y>a)`,
    	`(?<>a)`,
    	`[a-Z]`,
    	`(?i)[a-Z]`,
    	`\Q\E*`,
    	`a{100000}`,  // too much repetition
    	`a{100000,}`, // too much repetition
    	"((((((((((x{2}){2}){2}){2}){2}){2}){2}){2}){2}){2})",    // too much repetition
    	strings.Repeat("(", 1000) + strings.Repeat(")", 1000),    // too deep
    	strings.Repeat("(?:", 1000) + strings.Repeat(")*", 1000), // too deep
    	"(" + strings.Repeat("(xx?)", 1000) + "){1000}",          // too long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin_dryrun_test.go

    				annotation.SidecarStatus.Name:                         "true",
    				annotation.SidecarTrafficIncludeOutboundIPRanges.Name: "127.0.0.0/8",
    				annotation.SidecarTrafficExcludeOutboundIPRanges.Name: "10.0.0.0/8",
    			},
    			proxyEnv: []corev1.EnvVar{},
    			golden:   filepath.Join(env.IstioSrc, "cni/pkg/plugin/testdata/include-exclude-ip.txt.golden"),
    		},
    		{
    			name: "include-exclude-ports",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/crypto/x509/name_constraints_test.go

    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"ip:10.0.0.1"},
    		},
    		expectedError: "\"10.0.0.1\" is not permitted",
    	},
    
    	// #37: IPv4 constraints do not permit IPv6 addresses.
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"ip:10.0.0.0/8"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_server_journal_test.go

    		{name: "tailLines", Services: []string{service1}, options: options{TailLines: intPtr(100)}},
    		{name: "tailLines out of range", Services: []string{service1}, options: options{TailLines: intPtr(100000)}},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			n := &nodeLogQuery{
    				Services: tt.Services,
    				Files:    tt.Files,
    				options:  tt.options,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    tree.visit(new EditingFileVisitor())
                }
    
                final class EditingFileVisitor implements FileVisitor {
                    private final int num = new Random().nextInt(100000)
    
                    @Override
                    void visitDir(FileVisitDetails dirDetails) {}
    
                    @Override
                    void visitFile(FileVisitDetails fileDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

            assertThat(map.equals(copy), is(true));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testPerformance() throws Exception {
            int num = 100000;
            Map<String, Object> hmap = new HashMap<String, Object>();
            Map<String, Object> amap = new ArrayMap<String, Object>();
    
            long start = System.currentTimeMillis();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

              double z = aa.addAndGet(i, y);
              assertBitEquals(x + y, z);
              assertBitEquals(x + y, aa.get(i));
            }
          }
        }
      }
    
      static final long COUNTDOWN = 100000;
    
      class Counter extends CheckedRunnable {
        final AtomicDoubleArray aa;
        volatile long counts;
    
        Counter(AtomicDoubleArray a) {
          aa = a;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top