Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for Precedence (0.15 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val kind = unaryExpression.getInOrDecOperationKind()
            val precedence = when (unaryExpression) {
                is KtPostfixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX
                is KtPrefixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.PREFIX
                else -> error("unexpected KtUnaryExpression $unaryExpression")
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types.go

    	// CertData takes precedence over CertFile
    	CertData []byte
    	// KeyData holds PEM-encoded bytes (typically read from a client certificate key file).
    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            expect:
            serialize(123L, serializer) == 123L
            serialize(123, serializer) == 123
            serialize(123.4, serializer) == 123.4
        }
    
        def "custom serialization takes precedence over Java serialization"() {
            given:
            def customSerializer = Stub(Serializer) {
                read(_) >> { Decoder decoder ->
                    return decoder.readSmallLong() + 1
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/plugin/authn/authentication.go

    	return res
    }
    
    func needPerPortPassthroughFilterChain(port uint32, node *model.Proxy) bool {
    	// If there is any Sidecar defined, check if the port is explicitly defined there.
    	// This means the Sidecar resource takes precedence over the service. A port defined in service but not in Sidecar
    	// means the port is going to be handled by the pass through filter chain.
    	if node.SidecarScope.HasIngressListener() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
        def 'arguments passed via command line take precedence and is not incremental by default'() {
            when:
            run("run", "--args", "2 '3' \"4\"")
    
            then:
            executedAndNotSkipped ":run"
            assertOutputFileIs('''\
            2
            3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. docs/distributed/CONFIG.md

    - Ellipses notation (e.g. `{1...10}`) or bracket notations are fully allowed (e.g. `{a,c,f}`) to have multiple entries in one line.
    
    > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
    
    ### TODO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemSupportTest.groovy

            // while unlikely that a candidate would expose both JAVA_API_JARS and JAVA_API,
            // this confirms that JAVA_API_JARS takes precedence, per JavaEcosystemSupport
            Usage.JAVA_API          | [JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS, Usage.JAVA_API, JavaEcosystemSupport.DEPRECATED_JAVA_RUNTIME_JARS] | JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. pkg/config/analysis/local/istiod_analyze.go

    	// List of code and resource suppressions to exclude messages on
    	suppressions []AnalysisSuppression
    
    	// Mesh config for this analyzer. This can come from multiple sources, and the last added version will take precedence.
    	meshCfg *v1alpha1.MeshConfig
    
    	// Mesh networks config for this analyzer.
    	meshNetworks *v1alpha1.MeshNetworks
    
    	// Which kube resources are used by this analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // `QuantizationSpec`s so that specs can be easily passed around or represented
    // as a textproto.
    // Next ID: 2
    message QuantizationSpecs {
      // List of `QuantizationSpec`s. Later spec in the sequence takes precedence.
      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * <pre class='autoTested'>
         * repositories {
         *     mavenLocal()
         * }
         * </pre>
         * <p>
         * The location for the repository is determined as follows (in order of precedence):
         * </p>
         * <ol>
         * <li>The value of system property 'maven.repo.local' if set;</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top