Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for createfing (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            from.attribute(summarized, false)
            to.attribute(summarized, true)
        }
    }
    
    val sourceFiles by configurations.creating {
        isCanBeConsumed = false
        isCanBeResolved = false
    }
    
    val summarizedFiles by configurations.creating {
        extendsFrom(sourceFiles)
        isCanBeConsumed = false
        isCanBeResolved = true
        attributes {
            attribute(summarized, true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. plugin/pkg/admission/noderestriction/admission_test.go

    	tests := []admitTestCase{
    		// Mirror pods bound to us
    		{
    			name:       "allow creating a mirror pod bound to self",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/crypto/x509/x509.go

    	Raw []byte
    
    	// SerialNumber represents the serial number of a revoked certificate. It is
    	// both used when creating a CRL and populated when parsing a CRL. It must not
    	// be nil.
    	SerialNumber *big.Int
    	// RevocationTime represents the time at which the certificate was revoked. It
    	// is both used when creating a CRL and populated when parsing a CRL. It must
    	// not be the zero time.
    	RevocationTime time.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    }
                    details.result.status = status[id.toString()]
                }
              }
    """
            setMetadataSupplierClass('MP')
    
            when:
            def statusFile = temporaryFolder.createFile("versions.status")
            statusFile << '''group:projectA:1.1;release
    group:projectA:1.2;release
    group:projectB:1.1;release
    group:projectB:2.2;integration
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/daemon/daemon_controller.go

    	eventRecorder    record.EventRecorder
    
    	podControl controller.PodControlInterface
    	crControl  controller.ControllerRevisionControlInterface
    
    	// An dsc is temporarily suspended after creating/deleting these many replicas.
    	// It resumes normal action after observing the watch events for them.
    	burstReplicas int
    
    	// To allow injection of syncDaemonSet for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. 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)
Back to top