Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 569 for logic (0.07 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    // TensorHandle explicitly initialized to some value.
    // For now this doesn't do much beyond wrap Context's CreateLocalHandle method,
    // and offer a subclass of TensorHandleConvertible. Note that similar to
    // the python's eager mode logic, we bypass calling the "Const" op:
    // https://github.com/tensorflow/tensorflow/blob/1c064ab76064c58e54261b805027474885a1534d/tensorflow/python/framework/constant_op.py#L301
    class Constant : public TensorHandleConvertible {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/zzz_profile.yaml

    {{/*
    WARNING: DO NOT EDIT, THIS FILE IS A PROBABLY COPY.
    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/benchmark_main.template

    // Generated by the tf_library build rule.  DO NOT EDIT!
    //
    // This file contains the main function and logic for benchmarking code
    // generated by tfcompile.  All tokens of the form `{{TFCOMPILE_*}}` must be
    // rewritten to real values before this file can be compiled.
    //
    //    TFCOMPILE_HEADER    : Path to the header file generated by tfcompile.
    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CompositeProjectInitDescriptor.java

    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * This is used by SamplesGenerator in build logic.
     *
     * It would be better to introduce a specific API for the generator to use so that it is decouled from
     * the internals of build init infrastructure.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/strategy.go

    	"k8s.io/kubernetes/pkg/apis/apps/validation"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // daemonSetStrategy implements verification logic for daemon sets.
    type daemonSetStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating DaemonSet objects.
    var Strategy = daemonSetStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  7. architecture/security/istio-agent.md

    1. First, the request is handled by the SDS server. This is mostly just an intermediate translation layer exposing
       the `SecretManager` to Envoy, without much business logic. For each resource requested by Envoy, the SDS server
       will call `SecretManager.GenerateSecret(resourceName)`
    1. When `GenerateSecret` is called, the `SecretManager` is expected to return a new certificate. This can occur in a few ways.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

        private void warnIfConfigurationIsDeprecated(DeprecatableConfiguration configuration) {
            // To avoid potentially adding new deprecation warnings in Gradle 8.0, we will maintain
            // the existing fully deprecated logic here (migrating the method out of DefaultConfiguration
            // so it isn't mistakenly used elsewhere)
            if (isFullyDeprecated(configuration)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. .idea/scopes/Gradle_public_API.xml

    <component name="DependencyValidationManager">
        <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync -->
        <scope name="Gradle public API"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 12:25:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/gcsizes.go

    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    			// the struct it contains must be
    			// 64-bit-aligned.
    			//
    			// This logic is equivalent to the logic in
    			// cmd/compile/internal/types/size.go:calcStructOffset
    			return 8
    		}
    
    		// spec: "For a variable x of struct type: unsafe.Alignof(x)
    		// is the largest of the values unsafe.Alignof(x.f) for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top