Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,701 for generations (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	}
    
    	t.Logf("Checking that metadata.generation=1")
    
    	if generation, found, err := unstructured.NestedInt64(obj.UnstructuredContent(), "metadata", "generation"); err != nil {
    		t.Errorf("unexpected error getting metadata.generation: %v", err)
    	} else if !found {
    		t.Errorf("expected metadata.generation=1: got: %d", generation)
    	} else if generation != 1 {
    		t.Errorf("unexpected metadata.generation=%d: expected this to be set to 1", generation)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. 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)
  6. docs/en/docs/alternatives.md

    * <a href="https://github.com/tiangolo/full-stack-flask-couchdb" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-flask-couchdb</a>
    
    And these same full-stack generators were the base of the [**FastAPI** Project Generators](project-generation.md){.internal-link target=_blank}.
    
    !!! info
        Flask-apispec was created by the same Marshmallow developers.
    
    !!! check "Inspired **FastAPI** to"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pkg/registry/core/podtemplate/strategy.go

    	// Any changes to the template increment the generation number.
    	// See metav1.ObjectMeta description for more information on Generation.
    	if !apiequality.Semantic.DeepEqual(newTemplate.Template, oldTemplate.Template) {
    		newTemplate.Generation = oldTemplate.Generation + 1
    	}
    
    }
    
    // ValidateUpdate is the default update validation for an end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/schedule.go

    const (
    	ScorePhi       = iota // towards top of block
    	ScoreArg              // must occur at the top of the entry block
    	ScoreInitMem          // after the args - used as mark by debug info generation
    	ScoreReadTuple        // must occur immediately after tuple-generating insn (or call)
    	ScoreNilCheck
    	ScoreMemory
    	ScoreReadFlags
    	ScoreDefault
    	ScoreFlags
    	ScoreControl // towards bottom of block
    )
    
    type ValHeap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/printers/tablegenerator.go

    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // GenerateOptions encapsulates attributes for table generation.
    type GenerateOptions struct {
    	NoHeaders bool
    	Wide      bool
    }
    
    // TableGenerator - an interface for generating metav1.Table provided a runtime.Object
    type TableGenerator interface {
    	GenerateTable(obj runtime.Object, options GenerateOptions) (*metav1.Table, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. 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)
Back to top