Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 277 for logic (0.04 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is PropertyDescriptorImpl -> KaFe10DescKotlinPropertySymbol(unwrapped, analysisContext)
            else -> null
        }
    }
    
    /**
     * This logic should be equivalent to
     * [org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder.unwrapSubstitutionOverrideIfNeeded]. But this method unwrap all fake
     * overrides that do not change the signature.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    // deadcode marks all reachable symbols.
    //
    // The basis of the dead code elimination is a flood fill of symbols,
    // following their relocations, beginning at *flagEntrySymbol.
    //
    // This flood fill is wrapped in logic for pruning unused methods.
    // All methods are mentioned by relocations on their receiver's *rtype.
    // These relocations are specially defined as R_METHODOFF by the compiler
    // so we can detect and manipulated them here.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_ops_to_mhlo.cc

    template <typename UniformQuantizedConvolutionOp>
    FailureOr<SmallVector<NamedAttribute>> ConvertToMhloConvolutionOpAttrs(
        UniformQuantizedConvolutionOp op, PatternRewriter &rewriter) {
      // TODO(b/261005147): Update the lowering logic after migration to mhlo
      // ConvolutionDimensionNumbers.
      ::tensorflow::UniformQuantizedConvolutionDimensionNumbersAttr dnums_input;
      if (!dnums_input.ParseFromString(std::string(op.getDimensionNumbers()))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. src/crypto/tls/cipher_suites.go

    // package, excluding those with security issues, which are returned by
    // [InsecureCipherSuites].
    //
    // The list is sorted by ID. Note that the default cipher suites selected by
    // this package might depend on logic that can't be captured by a static list,
    // and might not match those returned by this function.
    func CipherSuites() []*CipherSuite {
    	return []*CipherSuite{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/volume/local/local.go

    			}
    		}
    
    	}
    
    	if runtime.GOOS != "windows" {
    		// skip below MkdirAll for windows since the "bind mount" logic is implemented differently in mount_wiondows.go
    		if err := os.MkdirAll(dir, 0750); err != nil {
    			klog.Errorf("mkdir failed on disk %s (%v)", dir, err)
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

            return false;
          }
    
          // Only inputs/outputs that do not have a cluster name assigned are
          // considered for special handling. Otherwise, island coarsening logic
          // should be able to handle it.
          if (wrapped_op->hasAttrOfType<StringAttr>(TF::kReplicationInfoAttr))
            continue;
          if (visited_wrapped_ops.contains(wrapped_op)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableBiMap.java

       * reconstructed using public factory methods. This ensures that the implementation types remain
       * as implementation details.
       *
       * <p>Since the bimap is immutable, ImmutableBiMap doesn't require special logic for keeping the
       * bimap and its inverse in sync during serialization, the way AbstractBiMap does.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    				istio_route.TranslateRequestMirrorPolicy(mirror.Destination, lb.serviceForHostname(host.Name(mirror.Destination.Host)), listenerPort, mp))
    		}
    	}
    
    	// TODO: eliminate this logic and use the total_weight option in envoy route
    	weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    	for _, dst := range in.Route {
    		weight := &wrappers.UInt32Value{Value: uint32(dst.Weight)}
    		if dst.Weight == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. cmd/object-api-utils_test.go

    	if err != nil {
    		t.Fatalf("failed to create HTTP request for Put Object: <ERROR> %v", err)
    	}
    
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to execute the handler.
    	apiRouter.ServeHTTP(rec, req)
    
    	ctx, cancel := context.WithCancel(GlobalContext)
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top