Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for mdash (0.29 sec)

  1. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

          value: >
            Comparing two approaches to a use case side by side can make it easier to examine the
            differences between them.
    
    
            Additionally, it's very useful to us if you can provide a "straw API" — what the
            method signatures would look like, for example, even if the method and class names are still
            in flux. This can make the feature you're suggesting much clearer to us.
    
      - type: textarea
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide functionality that is useful across boundaries of projects,
            companies, or even industries — utilities useful for a sizable proportion of all Java
            programmers everywhere. If you can give enough detail such that any of us can imagine coming
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
        def "can execute generated Unix start script in Dash"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("dash")
    
            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.StaticShAvailable])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/IdGeneratorTest.groovy

            expect:
            IdGenerator.generateId(source) == id
    
            where:
            source                   | id
            "Publish a java library" | "publish-a-java-library"
            "dash-dash"              | "dash-dash"
            " space prefix"          | "space-prefix"
            "invalid char ąść"       | "invalid-char"
            "many  separators -- "   | "many-separators"
            "--"                     | ""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/validation/generic_test.go

    			description:          "empty string",
    		},
    		{
    			beforeMasking:        "-",
    			expectedAfterMasking: "-",
    			description:          "only a single dash",
    		},
    		{
    			beforeMasking:        "-foo",
    			expectedAfterMasking: "-foo",
    			description:          "has leading dash",
    		},
    		{
    			beforeMasking:        "-foo-",
    			expectedAfterMasking: "-foa",
    			description:          "has both leading and trailing dashes",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/coverage/cover.go

    	}
    }
    
    func metaHashAndLen() ([16]byte, int) {
    
    	// Read meta-data hash from config entry.
    	mhash := base.Flag.Cfg.CoverageInfo.MetaHash
    	if len(mhash) != 32 {
    		base.Fatalf("unexpected: got metahash length %d want 32", len(mhash))
    	}
    	var hv [16]byte
    	for i := 0; i < 16; i++ {
    		nib := string(mhash[i*2 : i*2+2])
    		x, err := strconv.ParseInt(nib, 16, 32)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_overlay.txt

    rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    -- overlay-and-dash-modfile/p.go --
    package module
    -- overlay-and-dash-modfile/go.mod --
    -- overlay-and-dash-modfile/overlay.json --
    {
    	"Replace": {
    		"alternate.mod": "../../../overlay/overlay-and-dash-modfile-alternate-mod"
    	}
    }
    -- $WORK/overlay/overlay-and-dash-modfile-alternate-mod --
    module found.the/module
    -- carve/go.mod --
    module carve
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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 &ndash; 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)
Back to top