Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 473 for recreate (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/apiserver/pkg/warning"
    )
    
    // RESTCreateStrategy defines the minimum validation, accepted input, and
    // name generation behavior to create an object that follows Kubernetes
    // API conventions.
    type RESTCreateStrategy interface {
    	runtime.ObjectTyper
    	// The name generator is used when the standard GenerateName field is set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    			cancel(err)
    		}
    	}()
    
    	for {
    		select {
    		case <-ctx.Done():
    			req.closeBody()
    			return nil, context.Cause(ctx)
    		default:
    		}
    
    		// treq gets modified by roundTrip, so we need to recreate for each retry.
    		treq := &transportRequest{Request: req, trace: trace, ctx: ctx, cancel: cancel}
    		cm, err := t.connectMethodForRequest(treq)
    		if err != nil {
    			req.closeBody()
    			return nil, err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
        class EntryInvalid(val reason: String) : CheckedFingerprint()
    
        // The entry can be reused, however the values for certain projects cannot be reused and should be recreated
        class ProjectsInvalid(val reason: String, val invalidProjects: Set<Path>) : CheckedFingerprint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/artifacts/kustomization/should-not-create.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: should-not-create-map
    data:
      altGreeting: "Good Morning!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 131 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AbstractClassGeneratorSpec.groovy

        }
    
        protected <T> T create(Class<T> clazz, ServiceLookup services, Object... args) {
            return doCreate(generator, clazz, services, null, args)
        }
    
        protected <T> T create(ClassGenerator generator, Class<T> clazz, Object... args) {
            return doCreate(generator, clazz, defaultServices(), null, args)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    )
    
    // slicesByAction includes lists of slices to create, update, or delete.
    type slicesByAction struct {
    	toCreate, toUpdate, toDelete []*discovery.EndpointSlice
    }
    
    // append appends slices from another slicesByAction struct.
    func (s *slicesByAction) append(slices slicesByAction) {
    	s.toCreate = append(s.toCreate, slices.toCreate...)
    	s.toUpdate = append(s.toUpdate, slices.toUpdate...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConfigurationSpec.groovy

    @CompileStatic
    class ConfigurationSpec extends MultiSectionHandler {
        private final String name
        private final Supplier<Boolean> isCreate
    
        ConfigurationSpec(String name, Supplier<Boolean> isCreate) {
            this.name = name
            this.isCreate = isCreate
        }
    
        @Override
        String getSectionName() {
            name
        }
    
        void extendsFrom(String... superConfs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-annotations-stress.test

    UserLog dt=42 task=10 key_string=27 value_string=52 stack=57
    UserRegionBegin dt=12 task=10 name_string=29 stack=58
    GoCreate dt=36 new_g=35 new_stack=17 stack=59
    GoCreate dt=11 new_g=36 new_stack=17 stack=59
    GoCreate dt=18 new_g=37 new_stack=17 stack=59
    GoCreate dt=10 new_g=38 new_stack=17 stack=59
    GoCreate dt=6 new_g=39 new_stack=17 stack=59
    GoCreate dt=8 new_g=40 new_stack=17 stack=59
    UserRegionEnd dt=7 task=10 name_string=29 stack=60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  9. cmd/dynamic-timeouts_test.go

    	initial := timeout.Timeout()
    
    	for i := 0; i < dynamicTimeoutLogSize; i++ {
    		timeout.LogSuccess(20 * time.Second)
    	}
    
    	adjusted := timeout.Timeout()
    
    	if initial <= adjusted {
    		t.Errorf("Failure to decrease timeout, expected %v to be less than %v", adjusted, initial)
    	}
    }
    
    func TestDynamicTimeoutDualDecrease(t *testing.T) {
    	timeout := newDynamicTimeout(time.Minute, time.Second)
    
    	initial := timeout.Timeout()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/kernels/internal/README

    This folder contains compatibility_macros.h, which mirrors compatibility.h in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 165 bytes
    - Viewed (0)
Back to top