Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for makefile (0.46 sec)

  1. tools/docker-builder/docker.go

    // the entire source tree into the docker context (expensive) or need complex .dockerignore files.
    //
    // Once we have these staged folders, we just construct a docker bakefile and pass it to `buildx
    // bake` and let it do its work.
    func RunDocker(args Args) error {
    	requiresSplitBuild := len(args.Architectures) > 1 && (args.Save || !args.Push)
    	if !requiresSplitBuild {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

        }
    
        override fun getScopeContextForPosition(
            originalFile: KtFile,
            positionInFakeFile: KtElement
        ): KaScopeContext {
            val fakeFile = positionInFakeFile.containingKtFile
    
            // If the position is in KDoc, we want to pass the owning declaration to the ContextCollector.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

            Map<File, File> transformedEntries = Maps.newLinkedHashMapWithExpectedSize(inputFiles.size());
            for (int i = 0; i < inputFiles.size();) {
                File markerFile = inputFiles.get(i++);
                FileMarker fileMarker = FileMarker.of(markerFile.getName());
                switch (fileMarker) {
                    case AGENT_INSTRUMENTATION_MARKER:
                        // Agent instrumentation always contain 3 entries:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                node.addField(inputsField);
                node.addField(ruleFactoryField);
    
                // Generate makeRule() method
                List<Statement> statements = new ArrayList<Statement>();
                statements.add(new ExpressionStatement(new BinaryExpression(new FieldExpression(inputsField), ASSIGN, new VariableExpression("inputs"))));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. tests/integration/README.md

      galley-test-4ef25d910d2746f9b38/
    
    $ ls /foo/galley-test-4ef25d910d2746f9b38/
      istio-system-1537332205890088657.yaml
      ...
    ```
    
    ### Enabling CI Mode
    
    When executing in the CI systems, the makefiles use the ```--istio.test.ci``` flag. This flag causes a few changes in
    behavior. Specifically, more verbose logging output will be displayed, some of the timeout values will be more relaxed, and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/map.go

    		}
    		return undLower
    	}
    	if o.ignoreFinalSigma {
    		return &simpleCaser{f: f, span: isLower}
    	}
    	return &lowerCaser{
    		first:   f,
    		midWord: finalSigma(f),
    	}
    }
    
    func makeTitle(t language.Tag, o options) transform.SpanningTransformer {
    	_, i, _ := matcher.Match(t)
    	x := &titleInfos[i]
    	lower := x.lower
    	if o.noLower {
    		lower = (*context).copy
    	} else if !o.ignoreFinalSigma {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top