Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for bad2 (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    			out:         smallPayload,
    			outErrs:     []error{fmt.Errorf("bad"), fmt.Errorf("bad2")},
    			mediaType:   "application/json",
    			req:         &http.Request{Header: http.Header{}, URL: &url.URL{Path: "/path"}},
    			wantCode:    http.StatusInternalServerError,
    			wantHeaders: http.Header{"Content-Type": []string{"text/plain"}},
    			wantBody:    []byte(": bad"),
    		},
    
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

        }
    
        static class TypeWithUnannotatedProperties extends DefaultTask {
            String bad1
            File bad2
            @Input
            String useful
        }
    
        def "warns about and ignores properties that are not annotated"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    		"bar": sets.New[string]("dev-bar1", "dev-bar2", "dev-bar3"),
    		"baz": sets.New[string]("dev-baz1", "dev-baz2", "dev-baz3"),
    	}
    	resp = devs.Filter(cond)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    or any interface type that embeds <code>T</code>, recursively.
    </p>
    
    <pre>
    // illegal: Bad cannot embed itself
    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 cannot embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    </pre>
    
    <h3 id="Map_types">Map types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    </p>
    
    <pre>
    // illegal: Bad may not embed itself
    type Bad interface {
    	Bad
    }
    
    // illegal: Bad1 may not embed itself using Bad2
    type Bad1 interface {
    	Bad2
    }
    type Bad2 interface {
    	Bad1
    }
    
    // illegal: Bad3 may not embed a union containing Bad3
    type Bad3 interface {
    	~int | ~string | Bad3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    					if fn != nil {
    						v := fn.varByOffset[off-localSize]
    						if v != nil {
    							badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
    							continue
    						}
    					}
    					if off >= localSize+argSize {
    						badf("use of %s points beyond argument frame", m[1])
    						continue
    					}
    					badf("use of %s to access argument frame", m[1])
    				}
    			}
    
    			if fn == nil {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. .github/workflows/check-bad-merge.yml

    # See .github/workflows/CheckBadMerge.groovy for explanation
    name: Check bad merge commit
    on:
      pull_request:
        types:
         - opened
         - synchronize
    
    permissions: {}
    
    jobs:
      check_pr_commits:
        permissions:
          contents: read
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout code
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
          - name: Set up JDK 11
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client_test.go

    			Conditions: []*v1alpha1.IstioCondition{
    				{
    					Type:    "Health",
    					Message: "heath is badd",
    				},
    			},
    		}
    
    		if _, err := store.UpdateStatus(config.Config{
    			Meta:   cfgMeta,
    			Spec:   config.Spec(pb),
    			Status: config.Status(stat),
    		}); err != nil {
    			t.Errorf("bad: %v", err)
    		}
    
    		retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	}
    	if tr.req.Close {
    		t.Error("got Close true, want false")
    	}
    	// Depending on map iteration, body can be either of these.
    	expectedBody := "foo=bar&foo=bar2&bar=baz"
    	expectedBody1 := "bar=baz&foo=bar&foo=bar2"
    	if g, e := tr.req.ContentLength, int64(len(expectedBody)); g != e {
    		t.Errorf("got ContentLength %d, want %d", g, e)
    	}
    	bodyb, err := io.ReadAll(tr.req.Body)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    		"rro with incompatible propagation":      {{Name: "123", MountPath: "/rro-bad2", ReadOnly: true, RecursiveReadOnly: ptr.To(core.RecursiveReadOnlyEnabled), MountPropagation: ptr.To(core.MountPropagationHostToContainer)}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top