Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for renderUsing (0.25 sec)

  1. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptorTest.groovy

            acceptableDescriptors = defaultDescriptorForVersion(version)
        }
    
        private List<String>defaultDescriptorForVersion(version) {
            // Groovy XML Node put attributes in a HashMap so does not guarantee rendering order for attributes
            // This method generates all permutations so we can assert we have at least one
            def attributesPermutations = { String template, List<String> attributes ->
                def permutations = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PlatformNativeComponentReportIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    
    class PlatformNativeComponentReportIntegrationTest extends AbstractNativeComponentReportIntegrationTest {
        //TODO:HH Test rendering of a NativeExecutableSpec
        // Should display installation directory
    
        @RequiresInstalledToolChain
        @ToBeFixedForConfigurationCache(because = ":components")
        def "shows details of native C++ library"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

        }
    
        def "included builds are only rendered if there are some"() {
            when:
            run "projects"
            then:
            outputDoesNotContain("Included builds")
        }
    
        def "rendering long project descriptions is sensible"() {
            settingsFile << "rootProject.name = 'my-root-project'"
            buildFile << """
                description = '''
    this is a long description
    
    this shouldn't be visible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/os/file_posix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || (js && wasm) || wasip1 || windows
    
    package os
    
    import (
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // Close closes the [File], rendering it unusable for I/O.
    // On files that support [File.SetDeadline], any pending I/O operations will
    // be canceled and return immediately with an [ErrClosed] error.
    // Close will return an error if it has already been called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

    //   stacks - report.StackSet
    //   nodes  - List of names for each source in report.StackSet
    function stackViewer(stacks, nodes) {
      'use strict';
    
      // Constants used in rendering.
      const ROW = 20;
      const PADDING = 2;
      const MIN_WIDTH = 4;
      const MIN_TEXT_WIDTH = 16;
      const TEXT_MARGIN = 2;
      const FONT_SIZE = 12;
      const MIN_FONT_SIZE = 8;
    
      // Fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/dump.go

    		label = label + conditionString + "\n"
    	}
    
    	return []attribute{
    		{Key: "label", Value: label},
    		// these place metadata in the correct location, but don't conform to any normal attribute for rendering
    		{Key: "group", Value: v.gvk.Group},
    		{Key: "version", Value: v.gvk.Version},
    		{Key: "kind", Value: v.gvk.Kind},
    		{Key: "namespace", Value: v.namespace},
    		{Key: "name", Value: v.name},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 17:12:33 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    a img {
    	border: none;
    }
    
    /* Default paragraph styles */
    p {
    	font-family: inherit;
    	font-weight: normal;
    	font-size: 1em;
    	line-height: 1.6;
    	margin-bottom: 1.25em;
    	text-rendering: optimizeLegibility;
    }
    
    p aside {
    	font-size: 0.875em;
    	line-height: 1.35;
    	font-style: italic;
    }
    
    /* Default header styles */
    h1,
    h2,
    h3,
    #toctitle,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret.go

    	if err != nil {
    		return "", fmt.Errorf("failed rendering base manifest: %w", err)
    	}
    	discoveryContent, err := discoveryRenderer.RenderManifestFiltered(values, func(template string) bool {
    		for _, t := range discoveryTemplates {
    			if strings.Contains(template, t) {
    				return true
    			}
    		}
    		return false
    	})
    	if err != nil {
    		return "", fmt.Errorf("failed rendering discovery manifest: %w", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. samples/security/spire/spire-quickstart.yaml

                          In nominal conditions, this should reflect the number of pods
                          selected, but not always if there were problems encountered
                          rendering an entry for the pod (RenderFailures) or entries are
                          masked (EntriesMasked).
                        type: integer
                      entryFailures:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

                            @Override
                            public void onOutput(OutputEvent event) {
                                // Do not forward events for rendering when there are no listeners to receive
                                if (event instanceof LogLevelChangeEvent) {
                                    stdOutChain.onOutput(event);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top