Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for wbMove (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle 7.x supports Android Gradle Plugin (AGP) 4.1 and above.
    AGP versions above 7.3 are not tested with Gradle 7.x.
    Gradle 8.x supports AGP 8 and above.
    Gradle 8.x supports AGP 7.3 and above if you configure the following property:
    ```
    android.experimental.legacyTransform.forceNonIncremental=true
    ```
    
    ==== Change to `AntBuilder` parent class
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    > gradle assembleDependentsOperatorsPassingStaticLibrary --max-workers=1
    include::{snippetsPath}/native-binaries/cunit/tests/assembleDependentComponents.out[]
    ----
    
    In the output above, the targeted binary gets assembled as well as the test suite binary that depends on it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    As a consequence, the `verification-metadata.xml` file will be used in subsequent builds to verify dependencies.
    
    --
    There are dependencies that Gradle _cannot_ discover this way.
    In particular, you will notice that the CLI above uses the `help` task.
    If you don't specify any task, Gradle will automatically run the default task and generate a configuration file at the end of the build too.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      for (int64_t index : forward_variable_inputs) {
        Value argument = loop_body_func.getArgument(index);
        // Uses of this argument should only be the return and the
        // TPUReplicateInputOp. This is checked by the loop above.
        Operation* input_ptr = nullptr;
        for (Operation* user : argument.getUsers()) {
          if (llvm::isa<TF::TPUReplicatedInputOp>(user)) {
            input_ptr = user;
            break;
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                    require("2.0")
                }
            }
        }
    }
    ----
    ======
    =====
    
    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:jaxb_and_java9]]
    === [5.0] Gradle now bundles JAXB for Java 9 and above
    
    In order to use S3 backed artifact repositories, you previously had to add `--add-modules java.xml.bind` to `org.gradle.jvmargs` when running on Java 9 and above.
    
    Since Java 11 no longer contains the `java.xml.bind` module, Gradle now bundles JAXB 2.3.1 (`com.sun.xml.bind:jaxb-impl`) and uses it on Java 9 and above.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                        else -> Unclassified
                    }
                }
            }
        }
    
        /**
         * Returns whether this [FirScope] is a scope wider than [another] based on the above [PartialOrderOfScope] or not.
         */
        private fun FirScope.isWiderThan(another: FirScope): Boolean =
            toPartialOrder().scopeDistanceLevel > another.toPartialOrder().scopeDistanceLevel
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    		return p.push(p.newRegexp(OpEmptyMatch))
    	}
    
    	return p.push(p.collapse(subs, OpConcat))
    }
    
    // alternate replaces the top of the stack (above the topmost '(') with its alternation.
    func (p *parser) alternate() *Regexp {
    	// Scan down to find pseudo-operator (.
    	// There are no | above (.
    	i := len(p.stack)
    	for i > 0 && p.stack[i-1].Op < opPseudo {
    		i--
    	}
    	subs := p.stack[i:]
    	p.stack = p.stack[:i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. .bazelrc

    build --incompatible_enforce_config_setting_visibility
    # TODO: also enable this flag after fixing the visibility violations
    # build --incompatible_config_setting_private_default_visibility
    
    # Default options should come above this line.
    
    # Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
    # target CPU to build transient dependencies correctly. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top