Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,441 for generations (1.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/trace/testdata/generators/go122-syscall-steal-proc-sitting-in-syscall.go

    // that have been in a syscall the entire generation.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// Steal proc from a goroutine that's been blocked
    	// in a syscall the entire generation.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 946 bytes
    - Viewed (0)
  6. pilot/pkg/status/resource.go

    		Name:                 i.FullName.Name.String(),
    		Generation:           strconv.FormatInt(i.Generation, 10),
    	}
    }
    
    func ResourceFromModelConfig(c config.Config) Resource {
    	gvr, ok := gvk.ToGVR(c.GroupVersionKind)
    	if !ok {
    		return Resource{}
    	}
    	return Resource{
    		GroupVersionResource: gvr,
    		Namespace:            c.Namespace,
    		Name:                 c.Name,
    		Generation:           strconv.FormatInt(c.Generation, 10),
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 30 16:13:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownPlugin.groovy

    // tag::markdown-lang-registration[]
    // tag::markdown-tasks-generation[]
    class MarkdownPlugin extends RuleSource {
    // end::markdown-tasks-generation[]
        @ComponentType
        void registerMarkdownLanguage(TypeBuilder<MarkdownSourceSet> builder) {}
    // end::markdown-lang-registration[]
    
    // tag::markdown-tasks-generation[]
        @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    			// avoid an inconsistent state on the system, with some processes not
    			// waiting despite the state moved back to Pending.
    			r.lock.RUnlock()
    		case Ready:
    			generation := r.generation
    			r.lock.RUnlock()
    			return generation, nil
    		case Stopped:
    			r.lock.RUnlock()
    			return 0, fmt.Errorf("apiserver cacher is stopped")
    		default:
    			r.lock.RUnlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. istioctl/pkg/wait/wait_test.go

    			args:             strings.Split("--generation=2 --timeout=20ms virtual-service foo.default", " "),
    			wantException:    true,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 virtual-service foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 VirtualService foo.default", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/registry/admissionregistration/validatingwebhookconfiguration/strategy.go

    	// Any changes to the spec increment the generation number, any changes to the
    	// status should reflect the generation number of the corresponding object.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !reflect.DeepEqual(oldIC.Webhooks, newIC.Webhooks) {
    		newIC.Generation = oldIC.Generation + 1
    	}
    }
    
    // Validate validates a new validatingWebhookConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top