Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for Precedence (0.17 sec)

  1. src/net/addrselect.go

    		attrSourceDB.Label == attrDB.Label {
    		return preferDB
    	}
    
    	// Rule 6: Prefer higher precedence.
    	// If Precedence(DA) > Precedence(DB), then prefer DA.  Similarly, if
    	// Precedence(DA) < Precedence(DB), then prefer DB.
    	if attrDA.Precedence > attrDB.Precedence {
    		return preferDA
    	}
    	if attrDA.Precedence < attrDB.Precedence {
    		return preferDB
    	}
    
    	// Rule 7: Prefer native transport.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

            kind: Kind,
            precedence: Precedence,
        ) : KaCompoundAccess(operationPartiallyAppliedSymbol) {
            public val kind: Kind by validityAsserted(kind)
            public val precedence: Precedence by validityAsserted(precedence)
    
            public enum class Kind {
                INC, DEC
            }
    
            public enum class Precedence {
                PREFIX, POSTFIX
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   `calibration_options`. In that case, the explicit configs take precedence
    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    //   - No-op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    					},
    				},
    				{
    					"global takes precedence over default config",
    					"",
    					"",
    					[]proxyConfigInstance{
    						newProxyConfig("global", "istio-system", nil, map[string]string{
    							"A": "3",
    						}),
    					},
    					map[string]string{
    						"A": "3",
    						"B": "2",
    					},
    				},
    				{
    					"pod annotation takes precedence over namespace",
    					"{ \"proxyMetadata\": {\"A\": \"5\"} }",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

         */
        public enum RepositoryMerging {
    
            /**
             * The repositories declared in the POM have precedence over the repositories specified in the request.
             */
            POM_DOMINANT,
    
            /**
             * The repositories specified in the request have precedence over the repositories declared in the POM.
             */
            REQUEST_DOMINANT,
        }
    
        final Session session;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_ODML_CONVERTER_FOLDERS_H_
    
    namespace mlir::odml {
    
    // Populates the pattern set with all folding patterns. These patterns
    // are intended to have precedence over any other patterns added to the set.
    void PopulateFolderPatterns(RewritePatternSet &patternSet);
    
    }  // namespace mlir::odml
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:33:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    func (ps *printState) endScope(b byte) {
    	ps.scopes--
    	ps.writeByte(b)
    }
    
    // precedence is used for operator precedence. This is used to avoid
    // unnecessary parentheses when printing expressions in the LLVM style.
    type precedence int
    
    // The precedence values, in order from high to low.
    const (
    	precPrimary precedence = iota
    	precPostfix
    	precUnary
    	precCast
    	precPtrMem
    	precMul
    	precAdd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    If you enable auto-detection in your build, custom toolchains extend the set of toolchain locations.
    Gradle picks a toolchain according to the <<sec:precedence,precedence rules>>.
    ====
    
    [[sec:precedence]]
    == Toolchain installations precedence
    
    Gradle will sort all the JDK/JRE installations matching the toolchain specification of the build and will pick the first one.
    Sorting is done based on the following rules:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      // `config.calibration_options.representative_datasets` and
      // `config.static_range_ptq_preset.representative_datasets` are both
      // specified. In this case, the one set to the `calibration_options` takes
      // precedence.
      QuantizationConfig config{};
      RepresentativeDatasetConfig& top_level_dataset_config =
          *config.mutable_calibration_options()->add_representative_datasets();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top