Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 140 for startm (0.34 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    			if wireType != 0 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Start", wireType)
    			}
    			m.Start = 0
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				m.Start |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. fastapi/routing.py

                lifespan=lifespan,
            )
            if prefix:
                assert prefix.startswith("/"), "A path prefix must start with '/'"
                assert not prefix.endswith(
                    "/"
                ), "A path prefix must not end with '/', as the routes will start with '/'"
            self.prefix = prefix
            self.tags: List[Union[str, Enum]] = tags or []
            self.dependencies = list(dependencies or [])
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    seconds. readinessInitialDela: 0 # The period between readiness probes. readinessPeriodSecon: 15 # Enables or disables a startup probe. # For optimal startup times, changing this should be tied to the readiness probe values. # # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4. # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval), # and doesn't spam the readiness endpoint too much # # If the probe is disabled,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	EI_DATA       = 5  /* Data format. */
    	EI_VERSION    = 6  /* ELF format version. */
    	EI_OSABI      = 7  /* Operating system / ABI identification */
    	EI_ABIVERSION = 8  /* ABI version */
    	EI_PAD        = 9  /* Start of padding (per SVR4 ABI). */
    	EI_NIDENT     = 16 /* Size of e_ident array. */
    )
    
    // Initial magic number for ELF files.
    const ELFMAG = "\177ELF"
    
    // Version is found in Header.Ident[EI_VERSION] and Header.Version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when the state is synced\n  to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n  If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n  bookmark event is send when the state is synced at least to the moment\n  when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n  Invalid error is returned.\n\nDefaults...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			},
    			expectedError: fmt.Errorf("[memorymanager] machine state can not be empty when it has memory assignments"),
    		},
    		{
    			description:         "should fill the state with default values, when the state is empty",
    			expectedAssignments: state.ContainerMemoryAssignments{},
    			expectedMachineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// around expressions that use > (or >>). It is incremented if
    	// we output a parenthesis or something else that means that >
    	// or >> won't be treated as ending a template. It starts out
    	// as 1, and is set to 0 when we start writing template
    	// arguments. We add parentheses around expressions using > if
    	// scopes is 0. The effect is that an expression with > gets
    	// parentheses if used as a template argument that is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. src/cmd/trace/testdata/go122.test

    String id=95
    	data="runtime/trace.Start.func1"
    String id=96
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go"
    String id=97
    	data="main.blockingSyscall.func1"
    String id=98
    	data="runtime.StartTrace"
    String id=99
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=100
    	data="runtime/trace.Start"
    String id=101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        int32_t k_indices = k_indices_or.value();
        // We don't match two SliceOp with different sizes.
        if (k_values != k_indices && !values.use_empty() && !indices.use_empty())
          return failure();
    
        // Start replacing.
        auto k = !values.use_empty() ? k_values : k_indices;
        // Build scalar tensor k.
        auto k_ty = mlir::RankedTensorType::get({}, rewriter.getIntegerType(32));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    func TestComputedToleranceAlgImplementation(t *testing.T) {
    
    	startPods := int32(10)
    	// 150 mCPU per pod.
    	totalUsedCPUOfAllPods := uint64(startPods * 150)
    	// Each pod starts out asking for 2X what is really needed.
    	// This means we will have a 50% ratio of used/requested
    	totalRequestedCPUOfAllPods := int32(2 * totalUsedCPUOfAllPods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top