Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for wren (0.08 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    func TestStaticPolicyNew(t *testing.T) {
    	testCases := []testStaticPolicy{
    		{
    			description:   "should fail, when machine does not have reserved memory for the system workloads",
    			expectedError: fmt.Errorf("[memorymanager] you should specify the system reserved memory"),
    		},
    		{
    			description: "should succeed, when at least one NUMA node has reserved memory",
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. fastapi/routing.py

                # would pass the validation and be returned as is.
                # By being a new field, no inheritance will be passed as is. A new model
                # will always be created.
                # TODO: remove when deprecating Pydantic v1
                self.secure_cloned_response_field: Optional[
                    ModelField
                ] = create_cloned_field(self.response_field)
            else:
    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. src/database/sql/sql.go

    		return nil, err
    	}
    	return db.prepareDC(ctx, dc, dc.releaseConn, nil, query)
    }
    
    // prepareDC prepares a query on the driverConn and calls release before
    // returning. When cg == nil it implies that a connection pool is used, and
    // when cg != nil only a single driver connection is used.
    func (db *DB) prepareDC(ctx context.Context, dc *driverConn, release func(error), cg stmtConnGrabber, query string) (*Stmt, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/strategy_test.go

    		enableJobSuccessPolicy        bool
    		job                           batch.Job
    		updatedJob                    batch.Job
    		wantJob                       batch.Job
    	}{
    		"update job with a new field; updated when JobSuccessPolicy enabled": {
    			enableJobSuccessPolicy: true,
    			job: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector:      validSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                Specifies that this profile will be activated when a matching JDK is detected.
                For example, {@code 1.4} only activates on JDKs versioned 1.4,
                while {@code !1.4} matches any JDK that is not version 1.4. Ranges are supported too:
                {@code [1.5,)} activates when the JDK is 1.5 minimum.
              </description>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // Errors used by the HTTP server.
    var (
    	// ErrBodyNotAllowed is returned by ResponseWriter.Write calls
    	// when the HTTP method or response code does not permit a
    	// body.
    	ErrBodyNotAllowed = errors.New("http: request method or response status code does not allow body")
    
    	// ErrHijacked is returned by ResponseWriter.Write calls when
    	// the underlying connection has been hijacked using the
    	// Hijacker interface. A zero-byte write on a hijacked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    	genericPlegRelistPeriod    = time.Second * 1
    	genericPlegRelistThreshold = time.Minute * 3
    
    	// Generic PLEG relist period and threshold when used with Evented PLEG.
    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // loading functions.
    type PackageOpts struct {
    	// IgnoreImports controls whether we ignore explicit and implicit imports
    	// when loading packages.  Implicit imports are added when supporting Cgo
    	// or SWIG and when linking main packages.
    	IgnoreImports bool
    
    	// ModResolveTests indicates whether calls to the module loader should also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    					SizeBytes: 123,
    				},
    				{
    					Names:     []string{"registry.k8s.io:v3", "registry.k8s.io:v4"},
    					SizeBytes: 456,
    				},
    			},
    		},
    	}
    
    	// Update node status when node status is created.
    	// Report node status.
    	kubelet.updateRuntimeUp()
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    	actions := kubeClient.Actions()
    	assert.Len(t, actions, 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top