Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,568 for generations (0.18 sec)

  1. src/internal/trace/testdata/generators/go122-task-across-generations.go

    // and not the string itself, that string ID may not be valid
    // for use in future generations.
    
    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) {
    	g1 := t.Generation(1)
    
    	// A running goroutine emits a task begin.
    	b1 := g1.Batch(trace.ThreadID(0), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-task-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 767 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    // Regression test for an issue found in development.
    //
    // The core of the issue is that if generation counters
    // aren't considered as part of sequence numbers, then
    // it's possible to accidentally advance without a
    // GoStatus event.
    //
    // The situation is one in which it just so happens that
    // an event on the frontier for a following generation
    // has a sequence number exactly one higher than the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-confuse-seq-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1018 bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

        }
    }
    
    
    /**
     * Represents a unique operation within a particular generation.  The invocation id should be unique within a single
     * interpretation step, but not across generations (i.e. two operations in different generations may have the same
     * invocation id).  Operations in different generations with the same invocation id have no relationship to each
     * other except by coincidence.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/OperationGenerationId.kt

    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    /**
     * Represents the "generation" of a particular operation (either an addition function call or a property assignment operation).
     *
     * The order of generations is important as calls in later generations can override calls in earlier generations, but no the
     * other way around.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. istioctl/pkg/wait/wait.go

    			defer cancel()
    			if generation == "" {
    				w = getAndWatchResource(ctx, cliCtx) // setup version getter from kubernetes
    			} else {
    				w = withContext(ctx)
    				w.Go(func(result chan string) error {
    					result <- generation
    					return nil
    				})
    			}
    			// wait for all deployed versions to be contained in generations
    			t := time.NewTicker(pollInterval)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/internal/trace/generation.go

    // while reading the previous one. It's passed on when parsing the next
    // generation.
    type spilledBatch struct {
    	gen uint64
    	*batch
    }
    
    // readGeneration buffers and decodes the structural elements of a trace generation
    // out of r. spill is the first batch of the new generation (already buffered and
    // parsed from reading the last generation). Returns the generation and the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    // The generated function call op type will be decided by the given call_op_type
    // argument. Currently, it supports TF::XlaCallModuleOp and
    // TF::PartitionedCallOp function call op generations.
    SmallVector<Value, 4> LiftAsFunctionCall(OpBuilder& builder, Location location,
                                             FunctionCallOpType call_op_type,
                                             StringRef func_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/runtime/tracestatus.go

    	// statusTraced indicates whether a status event was traced for this resource
    	// a particular generation.
    	//
    	// There are 3 of these because when transitioning across generations, traceAdvance
    	// needs to be able to reliably observe whether a status was traced for the previous
    	// generation, while we need to clear the value for the next generation.
    	statusTraced [3]atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top