Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,701 for generations (0.4 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize);
            generating = !Constants.TRUE.equalsIgnoreCase(System.getProperty("fess.thumbnail.process"));
            thumbnailQueueThread = new Thread((Runnable) () -> {
                final List<Tuple3<String, String, String>> taskList = new ArrayList<>();
                while (generating) {
                    try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/cache/expiring.go

    	// cache is the internal map that backs the cache.
    	cache map[interface{}]entry
    	// generation is used as a cheap resource version for cache entries. Cleanups
    	// are scheduled with a key and generation. When the cleanup runs, it first
    	// compares its generation with the current generation of the entry. It
    	// deletes the entry iff the generation matches. This prevents cleanups
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 22 15:51:23 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. pkg/registry/core/podtemplate/strategy_test.go

    	Strategy.PrepareForUpdate(ctx, updatedLabel, podTemplate)
    	if updatedLabel.Generation != 1 {
    		t.Errorf("expected Generation=1, got %d", updatedLabel.Generation)
    	}
    
    	updatedTemplate := podTemplate.DeepCopy()
    	updatedTemplate.ResourceVersion = "10"
    	updatedTemplate.Generation = 999
    	updatedTemplate.Template.Spec.RestartPolicy = api.RestartPolicyNever
    
    	// ensure generation is updated for spec changes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationPlugin.groovy

    import org.gradle.platform.base.*
    
    // tag::component-registration[]
    // tag::binary-registration[]
    // tag::binaries-generation[]
    // tag::text-tasks-generation[]
    class DocumentationPlugin extends RuleSource {
    // end::binary-registration[]
    // end::binaries-generation[]
    // end::text-tasks-generation[]
        @ComponentType
        void registerComponent(TypeBuilder<DocumentationComponent> builder) {}
    // end::component-registration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/background-tasks.md

    Их тяжелее настраивать, также им нужен брокер сообщений наподобие RabbitMQ или Redis, но зато они позволяют вам запускать фоновые задачи в нескольких процессах и даже на нескольких серверах.
    
    Для примера, посмотрите [Project Generators](../project-generation.md){.internal-link target=_blank}, там есть проект с уже настроенным Celery.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:52:07 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/trace/gen.go

    	ProcRange(ctx *traceContext, ev *trace.Event)
    	ProcTransition(ctx *traceContext, ev *trace.Event)
    
    	// User annotations.
    	Log(ctx *traceContext, ev *trace.Event)
    
    	// Finish indicates the end of the trace and finalizes generation.
    	Finish(ctx *traceContext)
    }
    
    // runGenerator produces a trace into ctx by running the generator over the parsed trace.
    func runGenerator(ctx *traceContext, g generator, parsed *parsedTrace, opts *genOpts) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready_test.go

    	ready.set(false)
    	ready.set(false)
    	ready.set(false)
    	if generation, ok := ready.checkAndReadGeneration(); generation != 0 || ok {
    		t.Errorf("unexpected state: generation=%v ready=%v", generation, ok)
    	}
    	ready.set(true)
    	if generation, ok := ready.checkAndReadGeneration(); generation != 1 || !ok {
    		t.Errorf("unexpected state: generation=%v ready=%v", generation, ok)
    	}
    	ready.set(true)
    	ready.set(true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    // it would handle that error immediately and a totally valid generation
    // would be skipped for parsing and rejected because of an error in a
    // batch in the following generation.
    //
    // This test captures this behavior by making both the first generation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/registry/batch/cronjob/strategy_test.go

    		t.Errorf("CronJob does not allow setting status on create")
    	}
    	if cronJob.Generation != 1 {
    		t.Errorf("expected Generation=1, got %d", cronJob.Generation)
    	}
    	errs := Strategy.Validate(ctx, cronJob)
    	if len(errs) != 0 {
    		t.Errorf("Unexpected error validating %v", errs)
    	}
    	now := metav1.Now()
    
    	// ensure we do not change generation for non-spec updates
    	updatedLabelCronJob := cronJob.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/types.gen.go

    				ResourceVersion:   obj.ResourceVersion,
    				CreationTimestamp: obj.CreationTimestamp.Time,
    				OwnerReferences:   obj.OwnerReferences,
    				UID:               string(obj.UID),
    				Generation:        obj.Generation,
    			},
    			Spec:   &obj.Spec,
    			Status: &obj.Status,
    		}
    	},
    	gvk.CertificateSigningRequest: func(r runtime.Object) config.Config {
    		obj := r.(*k8sioapicertificatesv1.CertificateSigningRequest)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top