Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,647 for conditional (0.43 sec)

  1. src/cmd/internal/obj/link.go

    // Usually, not all arguments are present.
    // For example, MOVL R1, R2 encodes using only As=MOVL, From=R1, To=R2.
    // The Scond field holds additional condition bits for systems (like arm)
    // that have generalized conditional execution.
    // (2) form is present for compatibility with older code,
    // to avoid too much changes in a single swing.
    // (1) scheme is enough to express any kind of operand combination.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    LogicalResult DecomposeStackOpsInternal(
        Block*, ModuleOp, llvm::SmallDenseMap<Value, Value>*,
        llvm::StringMap<PartitionedCallStackOpsInfo>*);
    
    // Handles stack usage by a tf.While. It will convert the body and conditional
    // function signatures, and performs stack ops decomposition on them.
    LogicalResult HandleWhileOp(
        TF::WhileOp while_op, ModuleOp module,
        const llvm::SmallDenseMap<Value, Value>& data_var_to_size_var,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

                includePath == filePath("src/helloApi/headers")
            }
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable with variant conditional sources"() {
            when:
            app.writeSources(file("src/win32"))
            app.alternate.writeSources(file("src/x64"))
            buildFile << """
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

    // the uses is as a while condition, an empty vector is returned.
    SmallVector<TF::WhileOp> GetWhileCallers(func::FuncOp func,
                                             SymbolUserMap& symbol_map) {
      SmallVector<TF::WhileOp> while_callers;
      for (auto user : symbol_map.getUsers(func)) {
        if (auto while_caller = dyn_cast<TF::WhileOp>(user)) {
          // If used as while conditional anywhere, then skip optimizing this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    == Unsupported nested type
    
    This error indicates that an unsupported type is annotated as nested.
    Nested types are expected to either declare some annotated properties (which themselves are checked for annotations) or some conditional behaviour where capturing the type itself as input is important.
    Types of the Java SE API, types of the Kotlin stdlib, and Groovy's GString are not supported, because they meet neither of those requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. Makefile.core.mk

    RELEASE_LDFLAGS=''
    else
    RELEASE_LDFLAGS='-extldflags -static -s -w'
    endif
    
    # List of all binaries to build
    # We split the binaries into "agent" binaries and standard ones. This corresponds to build "agent".
    # This allows conditional compilation to avoid pulling in costly dependencies to the agent, such as XDS and k8s.
    AGENT_BINARIES:=./pilot/cmd/pilot-agent
    STANDARD_BINARIES:=./istioctl/cmd/istioctl \
      ./pilot/cmd/pilot-discovery \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

          </description>
          <fields>
            <field>
              <name>activation</name>
              <version>1.0.0+</version>
              <description>
                The conditional logic which will automatically trigger the inclusion of this profile.
              </description>
              <association>
                <type>Activation</type>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    		//
    		// To prevent these issues, we need to either:
    		// 1. Apply backpressure directly to Envoy requests or Istiod pushes
    		// 2. Make part of the system unbounded
    		//
    		// (1) is challenging because we cannot do a conditional Recv (for Envoy requests), and changing
    		// the control plane requires substantial changes. Instead, we make the requests channel
    		// unbounded. This is the least likely to cause issues as the messages we store here are the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

            ...document.querySelectorAll('polygon'),
        ];
    
        // Iterate over the svgParts specifically looking for white and black fill/stroke to be toggled.
        // The verbose conditional is intentional here so that we do not mutate any svg path, ellipse, or polygon that is of any color other than white or black.
        svgParts.forEach(el => {
            if (el.attributes.stroke.value === 'white') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    func (out *Nat) ExpShortVarTime(x *Nat, e uint, m *Modulus) *Nat {
    	// For short exponents, precomputing a table and using a window like in Exp
    	// doesn't pay off. Instead, we do a simple conditional square-and-multiply
    	// chain, skipping the initial run of zeroes.
    	xR := NewNat().set(x).montgomeryRepresentation(m)
    	out.set(xR)
    	for i := bits.UintSize - bitLen(e) + 1; i < bits.UintSize; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top