Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for recreate (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

            overridden:
              protected/*protected and package*/ open fun onCreate (): kotlin.Unit declared in p2.Parent
            $this: VALUE_PARAMETER name:<this> type:<root>.Child
            BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/java/org/gradle/samples/MainActivity.java

    package org.gradle.samples;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.os.Bundle;
    
    public class MainActivity extends AppCompatActivity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/kotlin/org/gradle/kotlin/dsl/samples/androidstudio/MainActivity.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.v7.app.AppCompatActivity
    import android.os.Bundle
    
    class MainActivity : AppCompatActivity() {
    
        override fun onCreate(savedInstanceState: Bundle?) {
            super.onCreate(savedInstanceState)
            setContentView(R.layout.activity_main)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 326 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    		rev:       kv.ModRevision,
    		isDeleted: false,
    		isCreated: true,
    	}
    }
    
    func parseEvent(e *clientv3.Event) (*event, error) {
    	if !e.IsCreate() && e.PrevKv == nil {
    		// If the previous value is nil, error. One example of how this is possible is if the previous value has been compacted already.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top