Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for Bind (0.06 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

    kind: ClusterRoleBinding
    metadata:
      labels:
        app: istiod
        release: istio
      name: istiod-clusterrole-istio-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istiod-clusterrole-istio-system
    subjects:
    - kind: ServiceAccount
      name: istiod
      namespace: istio-system
    
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    						{Name: "pods", Namespaced: true, Kind: "Pod", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    						{Name: "services", Namespaced: true, Kind: "Service"},
    					},
    				},
    				{
    					// Invalid GroupVersion, should be ignored
    					GroupVersion: "foo//whatever",
    					APIResources: []metav1.APIResource{
    						{Name: "bars", Namespaced: true, Kind: "Bar", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		kind schema.GroupKind
    		name string
    		want string
    	}{
    		{schema.GroupKind{}, "", ""},
    		{schema.GroupKind{}, "name", "name"},
    		{schema.GroupKind{Kind: "Kind"}, "", "kind/"}, // should not happen in practice
    		{schema.GroupKind{Kind: "Kind"}, "name", "kind/name"},
    		{schema.GroupKind{Group: "group", Kind: "Kind"}, "name", "kind.group/name"},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    				if got, want := controllerRef.APIVersion, "batch/v1"; got != want {
    					t.Errorf("controllerRef.APIVersion = %q, want %q", got, want)
    				}
    				if got, want := controllerRef.Kind, "Job"; got != want {
    					t.Errorf("controllerRef.Kind = %q, want %q", got, want)
    				}
    				if got, want := controllerRef.Name, job.Name; got != want {
    					t.Errorf("controllerRef.Name = %q, want %q", got, want)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0 FAILED
       Failures:
          - Could not find org:leaf:1.0.
            Searched in the following locations:
              - ${leafModule.ivyFile.displayUri}
            ${repositoryHint("ivy.xml")}
    
    org:leaf:1.0 FAILED
    \\--- org:top:1.0
         \\--- conf
    
    org:leaf:1.6+ FAILED
       Failures:
          - Could not find any matches for org:leaf:1.6+ as no versions of org:leaf are available.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    				Name:      hpaName,
    				Namespace: namespace,
    			},
    			Spec: autoscalingv2.HorizontalPodAutoscalerSpec{
    				ScaleTargetRef: autoscalingv2.CrossVersionObjectReference{
    					Kind:       tc.resource.kind,
    					Name:       tc.resource.name,
    					APIVersion: tc.resource.apiVersion,
    				},
    				MinReplicas: &tc.minReplicas,
    				MaxReplicas: tc.maxReplicas,
    				Behavior:    behavior,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    	}
    	return rows, nil
    }
    
    // formatResourceName receives a resource kind, name, and boolean specifying
    // whether or not to update the current name to "kind/name"
    func formatResourceName(kind schema.GroupKind, name string, withKind bool) string {
    	if !withKind || kind.Empty() {
    		return name
    	}
    
    	return strings.ToLower(kind.String()) + "/" + name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager_test.go

        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    import (
    	"context"
    	"fmt"
    	"testing"
    	"time"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    }
    
    // setSymType sets a new override type for 's'.
    func (state *dodataState) setSymType(s loader.Sym, kind sym.SymKind) {
    	if s == 0 {
    		panic("bad")
    	}
    	if int(s) < len(state.symGroupType) {
    		state.symGroupType[s] = kind
    	} else {
    		su := state.ctxt.loader.MakeSymbolUpdater(s)
    		su.SetType(kind)
    	}
    }
    
    func (ctxt *Link) dodata(symGroupType []sym.SymKind) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top