Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 233 for desc2 (0.6 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/ProjectLayoutSetupRegistrySpec.groovy

            when:
            registry.add(generator("desc1"))
            registry.add(generator("desc2"))
            registry.add(generator("desc3"))
    
            then:
            registry.get("desc1") != null
            registry.get("desc2") != null
            registry.get("desc3") != null
        }
    
        def "cannot add multiple descriptors with same id"() {
            when:
            registry.add(generator("desc1"))
            registry.add(generator("desc1"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/sortsOptionsInAlphabeticOrder/build.gradle

        @TaskAction
        void doSomething() {
        }
    
        @Option(option = "valueB", description = "descB")
        public void setValueB(boolean value) {
        }
    
        @Option(option = "valueA", description = "descA")
        public void setValueA(boolean value) {
        }
    
        @Option(option = "valueC", description = "descC")
        public void setValueC(boolean value) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:17:44 UTC 2018
    - 475 bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/collectors/cri_metrics.go

    	}
    
    	return c
    }
    
    // Describe implements the metrics.DescribeWithStability interface.
    func (c *criMetricsCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	for _, desc := range c.descriptors {
    		ch <- desc
    	}
    }
    
    // Collect implements the metrics.CollectWithStability interface.
    // TODO(haircommander): would it be better if these were processed async?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. releasenotes/notes/desc-to-admin-log-scope.yaml

    Xiaopeng Han <******@****.***> 1657269089 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 08:31:29 UTC 2022
    - 186 bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

            int start = dstIndex;
            byte[] descr;
    
            try {
                descr = DESCR.getBytes("ASCII");
            }
            catch ( UnsupportedEncodingException uee ) {
                return 0;
            }
    
            SMBUtil.writeInt2(NET_SHARE_ENUM, dst, dstIndex);
            dstIndex += 2;
            System.arraycopy(descr, 0, dst, dstIndex, descr.length);
            dstIndex += descr.length;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NetShareEnum.java

            int start = dstIndex;
            byte[] descr;
    
            try {
                descr = DESCR.getBytes( "ASCII" );
            } catch( UnsupportedEncodingException uee ) {
                return 0;
            }
    
            writeInt2( NET_SHARE_ENUM, dst, dstIndex );
            dstIndex += 2;
            System.arraycopy( descr, 0, dst, dstIndex, descr.length );
            dstIndex += descr.length;
            writeInt2( 0x0001, dst, dstIndex );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  7. operator/pkg/util/common_test.go

    )
    
    func TestIsFilePath(t *testing.T) {
    	tests := []struct {
    		desc string
    		in   string
    		want bool
    	}{
    		{
    			desc: "empty",
    			in:   "",
    			want: false,
    		},
    		{
    			desc: "no-markers",
    			in:   "foobar",
    			want: false,
    		},
    		{
    			desc: "with-slash",
    			in:   "/home/bobby/go_rocks/main",
    			want: true,
    		},
    		{
    			desc: "with-period",
    			in:   "istio.go",
    			want: true,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. operator/pkg/util/path_test.go

    func TestSplitEscaped(t *testing.T) {
    	tests := []struct {
    		desc string
    		in   string
    		want []string
    	}{
    		{
    			desc: "empty",
    			in:   "",
    			want: []string{},
    		},
    		{
    			desc: "no match",
    			in:   "foo",
    			want: []string{"foo"},
    		},
    		{
    			desc: "first",
    			in:   ":foo",
    			want: []string{"", "foo"},
    		},
    		{
    			desc: "last",
    			in:   "foo:",
    			want: []string{"foo", ""},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 29 00:15:38 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  9. operator/pkg/util/util_test.go

    	tests := []struct {
    		desc string
    		in   string
    		want any
    	}{
    		{
    			desc: "empty",
    			in:   "",
    			want: "",
    		},
    		{
    			desc: "true",
    			in:   "true",
    			want: true,
    		},
    		{
    			desc: "false",
    			in:   "false",
    			want: false,
    		},
    		{
    			desc: "numeric-one",
    			in:   "1",
    			want: 1,
    		},
    		{
    			desc: "numeric-zero",
    			in:   "0",
    			want: 0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/panels.libsonnet

          + custom.withGradientMode('hue')
          + if std.length(desc) > 0 then
            timeSeries.panelOptions.withDescription(desc)
          else {},
    
        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top