Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 174 for cleaning (0.21 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    					cj.Status.LastScheduleTime = &metav1.Time{Time: tc.lastScheduleTime}
    				}
    				job, err = getJobFromTemplate2(&cj, tc.jobCreationTime)
    				if err != nil {
    					t.Fatalf("%s: unexpected error creating a job from template: %v", name, err)
    				}
    				job.UID = "1234"
    				job.Namespace = cj.Namespace
    				if tc.stillActive {
    					ref, err := getRef(job)
    					if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    	userAdmClient, err := madmin.NewWithOptions(s.endpoint, &madmin.Options{
    		Creds:  cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    		Secure: s.secure,
    	})
    	if err != nil {
    		c.Fatalf("Err creating user admin client: %v", err)
    	}
    	userAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Create svc acc
    	cr := c.mustCreateSvcAccount(ctx, value.AccessKeyID, userAdmClient)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		}
    		if creating {
    			err = storeerr.InterpretCreateError(err, qualifiedResource, name)
    			err = rest.CheckGeneratedNameError(ctx, e.CreateStrategy, err, creatingObj)
    		} else {
    			err = storeerr.InterpretUpdateError(err, qualifiedResource, name)
    		}
    		return nil, false, err
    	}
    
    	if creating {
    		if e.AfterCreate != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    			Path:     "/a b",
    			RawQuery: "q=c+d",
    		},
    		"",
    	},
    	// path without leading /, so no parsing
    	{
    		"http:www.google.com/?q=go+language",
    		&URL{
    			Scheme:   "http",
    			Opaque:   "www.google.com/",
    			RawQuery: "q=go+language",
    		},
    		"http:www.google.com/?q=go+language",
    	},
    	// path without leading /, so no parsing
    	{
    		"http:%2f%2fwww.google.com/?q=go+language",
    		&URL{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/net/netip/netip_test.go

    			wantErr: `ParseAddr("010.000.015.001"): IPv4 field has octet with leading zero`,
    		},
    		// IPv4 address with a silly amount of leading zeros.
    		{
    			in:      "000001.00000002.00000003.000000004",
    			wantErr: `ParseAddr("000001.00000002.00000003.000000004"): IPv4 field has octet with leading zero`,
    		},
    		// 4-in-6 with octet with leading zero
    		{
    			in:      "::ffff:1.2.03.4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	CreateSandbox bool
    	// The id of existing sandbox. It is used for starting containers in ContainersToStart.
    	SandboxID string
    	// The attempt number of creating sandboxes for the pod.
    	Attempt uint32
    
    	// The next init container to start.
    	NextInitContainerToStart *v1.Container
    	// InitContainersToStart keeps a list of indexes for the init containers to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    	if err != nil {
    		// Failed to create NewMultipartUpload, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    
    	uploadID := res.UploadID
    	// Creating a dummy bucket for tests.
    	err = obj.MakeBucket(context.Background(), "unused-bucket", MakeBucketOptions{})
    	if err != nil {
    		// Failed to create newbucket, abort.
    		t.Fatalf("%s : %s", instanceType, err.Error())
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * Use native <<#rel5.0:bom_import,BOM import>> in your builds.
     * The <<worker_api.adoc#worker_api,Worker API>> for enabling units of work to run in parallel.
     * A new API for <<#rel4.9:lazy_task_creation,creating and configuring tasks lazily>> that can significantly improve your build's configuration time.
    
    Other notable changes to be aware of that may break your build include:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    	if s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    	if objectLockEnabled {
    		// Creating a bucket with locking requires the user having more permissions
    		for _, action := range []policy.Action{policy.PutBucketObjectLockConfigurationAction, policy.PutBucketVersioningAction} {
    			if !globalIAMSys.IsAllowed(policy.Args{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    		t.Fatalf("Expected no error adding EndpointSlice: %v", err)
    	}
    	_, err = client.DiscoveryV1().EndpointSlices(ns).Create(context.TODO(), endpointSlice, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Expected no error creating EndpointSlice: %v", err)
    	}
    
    	logger, _ = ktesting.NewTestContext(t)
    	numActionsBefore := len(client.Actions())
    	err = esController.syncService(logger, fmt.Sprintf("%s/%s", ns, serviceName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top