Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 174 for GENERATOR (0.17 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.generator
    
    import groovy.transform.CompileStatic
    import groovy.transform.builder.Builder
    import groovy.transform.builder.ExternalStrategy
    import org.gradle.test.fixtures.dsl.GradleDsl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    // for some type like `Address` we customly handle it in the generator
    func shouldSetWatchedResources(w *model.WatchedResource) bool {
    	if requiresResourceNamesModification(w.TypeUrl) {
    		// These handle it directly in the generator
    		return false
    	}
    	// Else fallback based on type
    	return xds.IsWildcardTypeURL(w.TypeUrl)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

        "compile time, usually because the value of the argument depends on a "
        "parameter to the computation, on a variable, or on a stateful operation "
        "such as a random number generator.";
    
    // TODO(b/282188914) remove the operations to skip once tests are fixed.
    static const DenseSet<mlir::TypeID>* operations_to_skip =
        new DenseSet<mlir::TypeID>{mlir::TypeID::get<mhlo::EinsumOp>()};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

                """
            ),
        ] = None,
        alias_priority: Annotated[
            Union[int, None],
            Doc(
                """
                Priority of the alias. This affects whether an alias generator is used.
                """
            ),
        ] = _Unset,
        # TODO: update when deprecating Pydantic v1, import these types
        # validation_alias: str | AliasPath | AliasChoices | None
        validation_alias: Annotated[
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    // XdsResourceGenerator creates the response for a typeURL DiscoveryRequest or DeltaDiscoveryRequest. If no generator
    // is associated with a Proxy, the default (a networking.core.ConfigGenerator instance) will be used.
    // The server may associate a different generator based on client metadata. Different
    // WatchedResources may use same or different Generator.
    // Note: any errors returned will completely close the XDS stream. Use with caution; typically and empty
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. src/cmd/trace/gstate.go

    	var stk int
    	if gs.lastStopStack != trace.NoStack {
    		stk = ctx.Stack(viewerFrames(gs.lastStopStack))
    	}
    	// Check invariants.
    	if gs.startRunningTime == 0 {
    		panic("silently broken trace or generator invariant (startRunningTime != 0) not held")
    	}
    	if gs.executing == R(noResource) {
    		panic("non-executing goroutine stopped")
    	}
    	ctx.Slice(traceviewer.SliceEvent{
    		Name:     gs.name(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/trace/threadgen.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"internal/trace"
    	"internal/trace/traceviewer"
    	"internal/trace/traceviewer/format"
    )
    
    var _ generator = &threadGenerator{}
    
    type threadGenerator struct {
    	globalRangeGenerator
    	globalMetricGenerator
    	stackSampleGenerator[trace.ThreadID]
    	logEventGenerator[trace.ThreadID]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.plugins.ide.internal.generator.XmlPersistableConfigurationObject> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (XmlPersistableConfigurationObject.java:0)
    Class <org.gradle.plugins.ide.internal.generator.generator.Generator> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Generator.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  9. pkg/registry/core/serviceaccount/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("unexpected error from REST storage: %v", err)
    	}
    	return rest, server
    }
    
    // A basic fake token generator which always returns a static string
    type fakeTokenGenerator struct {
    	staticToken string
    }
    
    func (f fakeTokenGenerator) GenerateToken(claims *jwt.Claims, privateClaims interface{}) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/trace/procgen.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"internal/trace"
    	"internal/trace/traceviewer"
    	"internal/trace/traceviewer/format"
    )
    
    var _ generator = &procGenerator{}
    
    type procGenerator struct {
    	globalRangeGenerator
    	globalMetricGenerator
    	procRangeGenerator
    	stackSampleGenerator[trace.ProcID]
    	logEventGenerator[trace.ProcID]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top