Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for mdash (0.04 sec)

  1. istioctl/pkg/dashboard/dashboard.go

    	cmd := &cobra.Command{
    		Use:   "prometheus",
    		Short: "Open Prometheus web UI",
    		Long:  `Open Istio's Prometheus dashboard`,
    		Example: `  istioctl dashboard prometheus
    
      # with short syntax
      istioctl dash prometheus
      istioctl d prometheus`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			client, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            failure.assertHasDescription("Problem configuring task :someTask from command line.")
            failure.assertHasCause("Multiple arguments were provided for command-line option '--second'.")
        }
    
        def "single dash user error yields decent error message"() {
            when:
            runAndFail 'help', '-isk'
    
            then:
            failure.assertHasDescription("Problem configuring task :help from command line.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/lib/panels.libsonnet

              'custom.fillOpacity',
              0
            )
            + fieldOverride.byRegexp.withProperty(
              'custom.lineStyle',
              {
                dash: [8, 10],
                fill: 'dash',
              }
            ),
          ]),
    
    
        bars(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (1)
  4. testing/precondition-tester/README.md

    We can use this information (i.e. by looking at the test results in Develocity) to see if we have any preconditions or combinations of preconditions, which are never satisfied – a situation which we otherwise would hardly notice.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPathIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class AccessorsClassPathIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `warning is emitted if a gradle slash project dash schema dot json file is present`() {
    
            withDefaultSettings()
            withBuildScript("")
    
            withFile(projectSchemaResourcePath)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/os/env_unix_test.go

    		}
    	}
    }
    
    var shellSpecialVarTests = []struct {
    	k, v string
    }{
    	{"*", "asterisk"},
    	{"#", "pound"},
    	{"$", "dollar"},
    	{"@", "at"},
    	{"!", "exclamation mark"},
    	{"?", "question mark"},
    	{"-", "dash"},
    }
    
    func TestExpandEnvShellSpecialVar(t *testing.T) {
    	for _, tt := range shellSpecialVarTests {
    		Setenv(tt.k, tt.v)
    		defer Unsetenv(tt.k)
    
    		argRaw := fmt.Sprintf("$%s", tt.k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

                if (cleanId.length() > 0) {
                    sb.append(cleanId);
                    sb.append(DASH);
                }
            }
            removeTrailingDashes(sb);
            return sb.toString();
        }
    
        private static void removeTrailingDashes(StringBuilder sb) {
            while (sb.length() > 0 && sb.charAt(sb.length() - 1) == DASH) {
                sb.setLength(sb.length() - 1);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/parse.go

    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    func parseRelease(rel string) (major, minor, patch int, ok bool) {
    	// Strip anything after a dash or plus.
    	for i := 0; i < len(rel); i++ {
    		if rel[i] == '-' || rel[i] == '+' {
    			rel = rel[:i]
    			break
    		}
    	}
    
    	next := func() (int, bool) {
    		for i := 0; i < len(rel); i++ {
    			if rel[i] == '.' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

            }
        }
    
        static class DashAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return satisfied(UnitTestPreconditions.UnixDerivative) && locate("dash") != null
            }
        }
    
        static class StaticShAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/util/cdi/cdi.go

    // validateVendorName checks the validity of a vendor name.
    // A vendor name may contain the following ASCII characters:
    //   - upper- and lowercase letters ('A'-'Z', 'a'-'z')
    //   - digits ('0'-'9')
    //   - underscore, dash, and dot ('_', '-', and '.')
    func validateVendorName(vendor string) error {
    	if vendor == "" {
    		return fmt.Errorf("invalid (empty) vendor name")
    	}
    	if !isLetter(rune(vendor[0])) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top