Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for conventions (0.17 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     *
     * Platform component interfaces and their default implementations are always prefixed with the word `Kotlin`, in contrast to
     * [KaEngineService]s which are prefixed with `Ka`. It is recommended to keep this naming convention in platform implementations. For
     * example, the Standalone API uses a `KotlinStandalone` prefix for its own platform component implementations.
     */
    public interface KotlinPlatformComponent
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/structs/hostlayout.go

    //
    // HostLayout does not affect layout within any other struct-typed fields
    // of the containing struct, nor does it affect layout of structs
    // containing the struct marked as host layout.
    //
    // By convention, HostLayout should be used as the type of a field
    // named "_", placed at the beginning of the struct type definition.
    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/api.go

    	ValidFrom      string `json:"validFrom"`
    	ExpirationTime string `json:"expirationTime"`
    }
    
    type WorkloadState struct {
    	State       string              `json:"state,omitempty"`
    	Connections WorkloadConnections `json:"connections,omitempty"`
    	Info        WorkloadInfo        `json:"info"`
    }
    
    type WorkloadConnections struct {
    	Inbound  []InboundConnection  `json:"inbound"`
    	Outbound []OutboundConnection `json:"outbound"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/values.yaml

      resources:
        requests:
          cpu: 200m
          # Ztunnel memory scales with the size of the cluster and traffic load
          # While there are many factors, this is enough for ~200k pod cluster or 100k concurrently open connections.
          memory: 512Mi
    
      # List of secret names to add to the service account as image pull secrets
      imagePullSecrets: []
    
      # A `key: value` mapping of environment variables to add to the pod
      env: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/internal/JvmLanguageServices.java

            }
        }
    
        private static class ComponentRegistrationAction implements ServiceRegistrationProvider {
            /**
             * @param registration unused parameter required by convention, see {@link org.gradle.internal.service.DefaultServiceRegistry}.
             */
            public void configure(ServiceRegistration registration,
                                  ComponentTypeRegistry componentTypeRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. hack/verify-prerelease-lifecycle-tags.sh

    # 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.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-prerelease-lifecycle-tags.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 20:27:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionSymbol
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * The type of access to a variable or using the array access convention.
     */
    public sealed class KaCompoundAccess(
        operationPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol>
    ) : KaLifetimeOwner {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

    }
    
    
    class DefaultOperationGenerationId(override val ordinal: Int) : OperationGenerationId {
        companion object {
            val preExisting = DefaultOperationGenerationId(-1)
            val convention = DefaultOperationGenerationId(0)
            val finalEvaluation = DefaultOperationGenerationId(1)
        }
    
        override fun compareTo(other: OperationGenerationId): Int = compareValues(ordinal, other.ordinal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                    fieldValue
                } else {
                    getConventionValue(bean, field, fieldValue)
                        ?.takeIf { conventionValue ->
                            // Prevent convention value to be assigned to a field of incompatible type
                            // A common cause is a regular field type being promoted to a Property/Provider type.
                            conventionValue.isAssignableTo(field.type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/case_format_test.cc

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    namespace {
    
    // For each test case, we manually construct the 4 variations in string case and
    // test all 16 conversions: from and to each of the 4 string case variations.
    struct Variations {
      string lower_camel;
      string lower_snake;
      string upper_camel;
      string upper_snake;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top