Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,666 for solder (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    }
    /* Background of a single flame-graph frame */
    .boxbg {
      border-width: 0px;
      position: absolute;
      overflow: hidden;
      box-sizing: border-box;
      background: #d8d8d8;
    }
    .positive { position: absolute; background: #caa; }
    .negative { position: absolute; background: #aca; }
    /* Not-inlined frames are visually separated from their caller. */
    .not-inlined {
      border-top: 1px solid black;
    }
    /* Function name */
    .boxtext {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

    namespace mlir::odml {
    
    namespace {
    
    // Helper class for parsing operands to a foldable operation.
    class FoldAdaptor {
     public:
      // Returns std::nullopt if the operation cannot be folded.
      static std::optional<FoldAdaptor> Create(Operation* operation) {
        auto foldable_opr = [](Value val) -> bool {
          return !llvm::isa<BlockArgument>(val) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            SourceFolder folder = new SourceFolder(relativePath, null);
            folder.setDir(dir);
            folder.setName(dir.getName());
            folder.setIncludes(getIncludesForTree(sourceSet, tree));
            folder.setExcludes(getExcludesForTree(sourceSet, tree));
            folder.setOutput(sourceSetOutputPaths.get(sourceSet));
            addScopeAttributes(folder, sourceSet, sourceSetUsages);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/README.md

    # Grafana Dashboards
    
    This folder contains Istio's official Grafana dashboards.
    These get publish to [Grafana](https://grafana.com/orgs/istio/dashboards) during release, and are bundled into our
    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  5. cmd/metacache_test.go

    		lastHandout:  metaCacheTestsetTimestamp,
    		dataVersion:  metacacheStreamVersion,
    	},
    	2: {
    		id:           "case-3-older",
    		bucket:       "bucket",
    		root:         "folder/prefix",
    		recursive:    false,
    		status:       scanStateSuccess,
    		fileNotFound: true,
    		error:        "",
    		started:      metaCacheTestsetTimestamp.Add(-time.Minute),
    		ended:        metaCacheTestsetTimestamp,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClassFoldersCreator.java

            }
    
            FileReferenceFactory fileReferenceFactory = classpath.getFileReferenceFactory();
            return classpath.getClassFolders().stream()
                .map(folder -> {
                    Library library = new Library(fileReferenceFactory.fromFile(folder));
                    library.setExported(true);
                    return library;
                }).collect(toImmutableList());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    * The latest https://gradle.org/install[Gradle distribution]
    ${toolChain.raw}
    
    == Create a project folder
    
    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  8. pkg/apis/coordination/types.go

    	// +optional
    	AcquireTime *metav1.MicroTime
    	// renewTime is a time when the current holder of a lease has last
    	// updated the lease.
    	// +optional
    	RenewTime *metav1.MicroTime
    	// leaseTransitions is the number of transitions of a lease between
    	// holders.
    	// +optional
    	LeaseTransitions *int32
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/jvm/ModularitySpec.java

     * <p>
     * Wherever a classpath (a list of files and folders) is configured in Gradle, it can be accompanied by a ModularClasspathHandling object
     * to describe how the entries of that list are to be passed to the --classpath and --module-path parameters.
     *
     * @since 6.4
     */
    public interface ModularitySpec {
    
        /**
         * Should a --module-path be inferred by analysing JARs and class folders on the classpath?
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 11:38:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

    plugins {
        id('java')
        id('jacoco')
    }
    
    // Do not generate reports for individual projects
    tasks.jacocoTestReport.configure {
        enabled = false
    }
    
    // Share sources folder with other projects for aggregated JaCoCo reports
    configurations.create('transitiveSourcesElements') {
        visible = false
        canBeResolved = false
        extendsFrom(configurations.implementation)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top