Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for gowrap2 (0.11 sec)

  1. test/newinline.go

    func gd1(int) {
    	defer gd1(gd2()) // ERROR "inlining call to gd2" "can inline gd1.deferwrap1"
    	defer gd3()()    // ERROR "inlining call to gd3"
    	go gd1(gd2())    // ERROR "inlining call to gd2" "can inline gd1.gowrap2"
    	go gd3()()       // ERROR "inlining call to gd3"
    }
    
    func gd2() int { // ERROR "can inline gd2"
    	return 1
    }
    
    func gd3() func() { // ERROR "can inline gd3"
    	return ii
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

                        <td class="whitespace-nowrap px-2 py-2 text-sm font-medium text-gray-900">{{ details.publisher }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-900">{{ details.pages }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-500">{{ details.type }}</td>
                        <td class="whitespace-nowrap px-2 py-2 text-sm text-gray-500">{{ details.language }}</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/framework_test.go

    		return toWrap(ctrl, reactor, test)
    	}
    }
    
    // wrapTestWithReclaimCalls returns a testCall that:
    //   - configures controller with recycler or deleter which will return provided
    //     errors when a volume is deleted or recycled
    //   - calls given testCall
    func wrapTestWithReclaimCalls(operation operationType, expectedOperationCalls []error, toWrap testCall) testCall {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

                .append("    <thead>\n")
                .append("        <tr>\n")
                .append("            <th class=\"uk-table-shrink uk-width-auto uk-text-nowrap\">Module</th>\n")
                .append("            <th class=\"uk-table-shrink uk-width-auto uk-text-nowrap\">Artifact</th>\n")
                .append("            <th class=\"uk-table-shrink uk-width-expand\">Problem(s)</th>\n")
                .append("        </tr>\n")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. src/encoding/xml/xml_test.go

    	}
    	if attr.Name.Local != "attr" {
    		t.Errorf("Unexpected attribute name: %v", attr.Name.Local)
    	}
    }
    
    func TestValuelessAttrs(t *testing.T) {
    	tests := [][3]string{
    		{"<p nowrap>", "p", "nowrap"},
    		{"<p nowrap >", "p", "nowrap"},
    		{"<input checked/>", "input", "checked"},
    		{"<input checked />", "input", "checked"},
    	}
    	for _, test := range tests {
    		d := NewDecoder(strings.NewReader(test[0]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/base.css

        z-index: 100;
    }
    
    .site-header__navigation-submenu-section .site-header__navigation-submenu .site-header__navigation-submenu-item-link {
        width: 100%;
        color: #02303A;
        white-space: nowrap;
        display: inline-block;
        padding-top: 3px;
        border: 0 none;
        transition: none;
        -o-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/cmd/vet/testdata/print/print.go

    	f.Wrapf(0, "%r", "hello")             // ERROR "Wrapf format %r has unknown verb r"
    	f.Wrapf(0, "%#s", "hello")            // ERROR "Wrapf format %#s has unrecognized flag #"
    	f.Wrap2(0, "%s", "hello", 3)          // ERROR "Wrap2 call has possible Printf formatting directive %s"
    	f.Wrapf2(0, "%s", "hello", 3)         // ERROR "Wrapf2 call needs 1 arg but has 2 args"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  8. src/cmd/trace/goroutines.go

    .details td {
      text-align: right;
      border: 1px solid black;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/trace/tasks.go

      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    table#reqs td.elapsed {
      padding: 0 0.5em;
      text-align: right;
      white-space: pre;
      width: 10em;
    }
    address {
      font-size: smaller;
      margin-top: 5em;
    }
    </style>
    <body>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/trace/regions.go

    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top