Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for recreate (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def original1 = cl.action(123)
            original1 instanceof Serializable
    
            def recreated1 = recreate(original1)
            def result1 = new StringBuilder()
            recreated1.execute(result1)
    
            result1.toString() == "123"
    
            def original2 = cl.thing(123)
            def result2 = recreate(original2).call()
    
            result2 == "123"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            outputContains("create task")
            outputContains("configure task")
            result.assertTasksExecuted(":a", ":b")
    
            when:
            configurationCacheRun "a"
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Reusing configuration cache.")
            outputDoesNotContain("running build script")
            outputDoesNotContain("create task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. samples/addons/prometheus.yaml

        matchLabels:
          app.kubernetes.io/component: server
          app.kubernetes.io/name: prometheus
          app.kubernetes.io/instance: prometheus
      replicas: 1
      revisionHistoryLimit: 10
      strategy:
        type: Recreate
        rollingUpdate: null
      template:
        metadata:
          labels:
            app.kubernetes.io/component: server
            app.kubernetes.io/name: prometheus
            app.kubernetes.io/instance: prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            @Override
            public M getData() {
                return metadata;
            }
    
            @Override
            public void onReuse() {
                if (scriptClass != null) {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    scope.onReuse();
                    assert scriptClass.getClassLoader() == scope.getLocalClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. cmd/iam-etcd-store.go

    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					for _, event := range watchResp.Events {
    						isCreateEvent := event.IsModify() || event.IsCreate()
    						isDeleteEvent := event.Type == etcd.EventTypeDelete
    
    						switch {
    						case isCreateEvent:
    							ch <- iamWatchEvent{
    								isCreated: true,
    								keyPath:   string(event.Kv.Key),
    							}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	// instances get "invalid" errors if the try to download from the buffer
    	// using their own start/end indexes calculated from previous buffer
    	// content.
    
    	// Empty the cyclic buffer, ensuring startIndex doesn't decrease.
    	w.startIndex = w.endIndex
    	w.removedEventSinceRelist = false
    
    	if err := w.store.Replace(toReplace, resourceVersion); err != nil {
    		return err
    	}
    	w.listResourceVersion = version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func.go

    	return base.DebugHashMatchPkgFunc(sym.Pkg.Path, sym.Name)
    }
    
    func (f *Func) spSb() (sp, sb *Value) {
    	initpos := src.NoXPos // These are originally created with no position in ssa.go; if they are optimized out then recreated, should be the same.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpSB {
    			sb = v
    		}
    		if v.Op == OpSP {
    			sp = v
    		}
    		if sb != nil && sp != nil {
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/eviction_test.go

    				badUID := pod.UID + "1"
    				return &metav1.DeleteOptions{Preconditions: &metav1.Preconditions{UID: &badUID}}
    			},
    			expectErr: "The object might have been deleted and then recreated",
    		},
    		{
    			name:       "valid resourceVersion",
    			initialPod: true,
    			makeDeleteOptions: func(pod *api.Pod) *metav1.DeleteOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top