Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for 4000 (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"type(self.val1) == double": 4,
    
    				// Use a int64 value with a number openAPI schema type since float representations of whole numbers
    				// (e.g. 1.0, 0.0) can convert to int representations (e.g. 1, 0) in yaml to json translation, and
    				// then get parsed as int64s.
    				"type(self.val7) == double": 4,
    				"self.val7 == 1.0":          3,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. src/time/format.go

    				return layout[0:i], stdNumShortTZ, layout[i+3:]
    			}
    
    		case 'Z': // Z070000, Z07:00:00, Z0700, Z07:00,
    			if len(layout) >= i+7 && layout[i:i+7] == "Z070000" {
    				return layout[0:i], stdISO8601SecondsTZ, layout[i+7:]
    			}
    			if len(layout) >= i+9 && layout[i:i+9] == "Z07:00:00" {
    				return layout[0:i], stdISO8601ColonSecondsTZ, layout[i+9:]
    			}
    			if len(layout) >= i+5 && layout[i:i+5] == "Z0700" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    // avoided.
    func TestWriterReadFromCounts(t *testing.T) {
    	var w0 writeCountingDiscard
    	b0 := NewWriterSize(&w0, 1234)
    	b0.WriteString(strings.Repeat("x", 1000))
    	if w0 != 0 {
    		t.Fatalf("write 1000 'x's: got %d writes, want 0", w0)
    	}
    	b0.WriteString(strings.Repeat("x", 200))
    	if w0 != 0 {
    		t.Fatalf("write 1200 'x's: got %d writes, want 0", w0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    // We ran a test on Google's C++ code base and turned up only
    // a single use case with depth > 100; it had depth 128.
    // Using depth 1000 should be plenty of margin.
    // As an optimization, we don't even bother calculating heights
    // until we've allocated at least maxHeight Regexp structures.
    const maxHeight = 1000
    
    // maxSize is the maximum size of a compiled regexp in Insts.
    // It too is somewhat arbitrarily chosen, but the idea is to be large enough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Scroll Search is not available."));
                return;
            }
    
            final StringBuilder buf = new StringBuilder(1000);
            request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, Constants.SEARCH_LOG_ACCESS_TYPE_JSON);
            final JsonRequestParams params = new JsonRequestParams(request, fessConfig);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption_test.go

    	add(t, dc.rcStore, rc)
    	dc.sync(ctx, pdbName)
    
    	// It starts out at 0 expected because, with no pods, the PDB doesn't know
    	// about the RC.  This is a known bug.  TODO(mml): file issue
    	ps.VerifyPdbStatus(t, pdbName, 0, 0, 0, 0, map[string]metav1.Time{})
    
    	for i := int32(0); i < 3; i++ {
    		pod, _ := newPod(t, fmt.Sprintf("foobar %d", i))
    		updatePodOwnerToRc(t, pod, rc)
    		pod.Labels = labels
    		add(t, dc.podStore, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher_test.go

    			}
    		}
    	}
    }
    
    func TestAttacherMountDevice(t *testing.T) {
    	pvName := "test-pv"
    	var testFSGroup int64 = 3000
    	nonFinalError := volumetypes.NewUncertainProgressError("")
    	transientError := volumetypes.NewTransientOperationFailure("")
    
    	testCases := []struct {
    		testName                       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        }
      }
      if (-not $hns_endpoint) {
        $hns_endpoint = New-HnsEndpoint `
            -NetworkId ${hns_network}.Id `
            -Name ${endpoint_name} `
            -IPAddress ${pod_endpoint_gateway} `
            -Gateway "0.0.0.0" `
            -Verbose
        # TODO(pjh): find out: why is this always CompartmentId 1?
        Attach-HnsHostEndpoint `
            -EndpointID ${hns_endpoint}.Id `
            -CompartmentID 1 `
            -Verbose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	qs := qsComplete(qsc, 2000)
    
    	uniformScenario{name: qCfg.Name,
    		qs: qs,
    		clients: []uniformClient{
    			newUniformClient(1001001001, 8, 20, Quarter, Quarter).setInitWidth(500),
    			newUniformClient(2002002002, 7, 30, Quarter, Quarter/2).setInitWidth(500),
    		},
    		concurrencyLimit:            2000,
    		evalDuration:                Quarter * 40,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// successfully steal background credit. Higher values reduce memory
    	// contention.
    	gcCreditSlack = 2000
    
    	// gcAssistTimeSlack is the nanoseconds of mutator assist time that
    	// can accumulate on a P before updating gcController.assistTime.
    	gcAssistTimeSlack = 5000
    
    	// gcOverAssistWork determines how many extra units of scan work a GC
    	// assist does when an assist happens. This amortizes the cost of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top